Message11760

Author jeff.allen
Recipients amak, fwierzbicki, jeff.allen, thatch, zyasoft
Date 2018-03-07.19:12:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1520449952.74.0.467229070634.issue1965@psf.upfronthosting.co.za>
In-reply-to
Content
Still present:

PS bugs> jython
Jython 2.7.2a1+ (default:d74f8c2cd56f, Feb 24 2018, 17:18:53)
[Java HotSpot(TM) 64-Bit Server VM (Oracle Corporation)] on java1.8.0_151
Type "help", "copyright", "credits" or "license" for more information.
>>> import re
>>> m = re.compile(r'a+')
>>> m.match('a' * 22000)
<org.python.modules.sre.MatchObject object at 0x2>
>>> m = re.compile(r'(?:a)+')
>>> m.match('a' * 22000)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
RuntimeError: maximum recursion limit exceeded
History
Date User Action Args
2018-03-07 19:12:32jeff.allensetmessageid: <1520449952.74.0.467229070634.issue1965@psf.upfronthosting.co.za>
2018-03-07 19:12:32jeff.allensetrecipients: + jeff.allen, fwierzbicki, amak, zyasoft, thatch
2018-03-07 19:12:32jeff.allenlinkissue1965 messages
2018-03-07 19:12:32jeff.allencreate