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 BreamoreBoy, ezio.melotti, mrabarnett, py.user, serhiy.storchaka
Date 2014-06-26.19:01:46
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403809306.96.0.696219497863.issue14460@psf.upfronthosting.co.za>
In-reply-to
Content
>>> m = re.search(r'(?<=(a)){10}bc', 'abc', re.DEBUG)
max_repeat 10 10 
  assert -1 
    subpattern 1 
      literal 97 
literal 98 
literal 99 
>>> m.group()
'bc'
>>>
>>> m.groups()
('a',)
>>>


It works like there are 10 letters "a" before letter "b".
History
Date User Action Args
2014-06-26 19:01:47py.usersetrecipients: + py.user, ezio.melotti, mrabarnett, BreamoreBoy, serhiy.storchaka
2014-06-26 19:01:46py.usersetmessageid: <1403809306.96.0.696219497863.issue14460@psf.upfronthosting.co.za>
2014-06-26 19:01:46py.userlinkissue14460 messages
2014-06-26 19:01:46py.usercreate