This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author py.user
Recipients ezio.melotti, mrabarnett, py.user
Date 2012-04-01.08:07:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333267671.53.0.559378302882.issue14460@psf.upfronthosting.co.za>
In-reply-to
Content
>>> import re
>>> re.search(r'(?<=a){100,200}bc', 'abc', re.DEBUG)
max_repeat 100 200 
  assert -1 
    literal 97 
literal 98 
literal 99 
<_sre.SRE_Match object at 0xb7429f38>
>>> re.search(r'(?<=a){100,200}bc', 'abc', re.DEBUG).group()
'bc'
>>>


I expected "nothing to repeat"
History
Date User Action Args
2012-04-01 08:07:51py.usersetrecipients: + py.user, ezio.melotti, mrabarnett
2012-04-01 08:07:51py.usersetmessageid: <1333267671.53.0.559378302882.issue14460@psf.upfronthosting.co.za>
2012-04-01 08:07:50py.userlinkissue14460 messages
2012-04-01 08:07:50py.usercreate