[issue814253] Grouprefs in lookbehind assertions

2015-02-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset b78195af96f5 by Serhiy Storchaka in branch 'default': Issues #814253, #9179: Group references and conditional group references now https://hg.python.org/cpython/rev/b78195af96f5 New changeset 5387095b8675 by Serhiy Storchaka in branch '2.7': Issues

[issue814253] Grouprefs in lookbehind assertions

2014-11-07 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Now group references to groups with fixed width are supported in lookbehind assertions. -- assignee: effbot -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 2.7, Python 3.4, Python 3.5

[issue814253] Grouprefs in lookbehind assertions

2014-11-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e2c7d774df3 by Serhiy Storchaka in branch '2.7': Silence the failure of test_pyclbr after adding a property in sre_parse https://hg.python.org/cpython/rev/0e2c7d774df3 New changeset 246c9570a757 by Serhiy Storchaka in branch '3.4': Silence the fail

[issue814253] Grouprefs in lookbehind assertions

2014-11-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset fac649bf2d10 by Serhiy Storchaka in branch '2.7': Issues #814253, #9179: Group references and conditional group references now https://hg.python.org/cpython/rev/fac649bf2d10 New changeset 9fcf4008b626 by Serhiy Storchaka in branch '3.4': Issues #814

[issue814253] Grouprefs in lookbehind assertions

2014-10-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: The patch for issue9179 fixes this issue too. -- nosy: +serhiy.storchaka superseder: -> Lookback with group references incorrect (two issues?) ___ Python tracker __

[issue814253] Grouprefs in lookbehind assertions

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue814253] Grouprefs in lookbehind assertions

2013-05-25 Thread Matthew Barnett
Matthew Barnett added the comment: Issue #2636 resulted in the regex module, which supports variable-length look-behinds. I don't know how much work it would take even to put a limited fixed-length look-behind fix for this into the re module, so I'm afraid the issue must remain open. ---

[issue814253] Grouprefs in lookbehind assertions

2013-05-25 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as a result of work done via #2636 or must it remain open? -- ___ Python tracker ___

[issue814253] Grouprefs in lookbehind assertions

2010-08-18 Thread Mark Lawrence
Mark Lawrence added the comment: I've deliberately changed the stage to patch review and the version to 3.2 to highlight the fact that a lot of work will be needed to get the new regex engine into the standard library. Feel free to change these as is seen fit. -- nosy: +BreamoreBoy s

[issue814253] Grouprefs in lookbehind assertions

2010-08-03 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 2.7 -Python 2.3, Python 2.4, Python 2.5 ___ Python tracker ___ ___ Python-bugs-list

[issue814253] Grouprefs in lookbehind assertions

2009-03-05 Thread Matthew Barnett
Matthew Barnett added the comment: As part of issue #2636 group references now work in lookbehinds. However, your example: (?<=(...)\1)abc will fail but: (?<=\1(...))abc will succeed. Why? Well, in lookbehinds it searches backwards. In the first regex it sees the group reference be

[issue814253] Grouprefs in lookbehind assertions

2007-09-10 Thread Fredrik Lundh
Changes by Fredrik Lundh: -- type: -> behavior versions: +Python 2.4, Python 2.5 Tracker <[EMAIL PROTECTED]> ___ Python-bugs-list m