[issue694374] Recursive regular expressions

2013-02-23 Thread R. David Murray
R. David Murray added the comment: Agreed that this is unlikely to ever get implemented given that Matthew doesn't think it should be. -- assignee: niemeyer - nosy: +r.david.murray resolution: - rejected stage: - committed/rejected status: open - closed

[issue694374] Recursive regular expressions

2013-02-23 Thread Matthew Barnett
Matthew Barnett added the comment: FYI, I did eventually add it to my regex implementation. It was quite challenging! -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue694374 ___

[issue694374] Recursive regular expressions

2010-08-18 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Closing because of quote from msg83993 Another feature request that I've decided not to consider any further is recursive regular expressions. There are other tools available for that kind of thing, and I don't want the re module to go

[issue694374] Recursive regular expressions

2009-03-24 Thread Peter Waller
Peter Waller peter.wal...@gmail.com added the comment: It looks like Matthew has dropped this feature from consideration. See msg83993 . -- nosy: +pwaller ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue694374

[issue694374] Recursive regular expressions

2009-03-24 Thread Matthew Barnett
Matthew Barnett pyt...@mrabarnett.plus.com added the comment: There are 2 reasons: 1. I've been told that my current patches contain too many differences from the current implementation, so basically I have to go back to the start and introduce any changes a little at a time, without knowing

[issue694374] Recursive regular expressions

2008-10-13 Thread Matthew Barnett
Matthew Barnett [EMAIL PROTECTED] added the comment: Perl (?number) for calling numbered groups and (?name) for named groups (Perl also supports (?Pname)). (?R) is equivalent to (?0). It's interesting that the documentation for both Perl and PCRE say that they support (?Pname) because that's

[issue694374] Recursive regular expressions

2008-09-30 Thread Matthew Barnett
Matthew Barnett [EMAIL PROTECTED] added the comment: I'll have a look at this. No promises, though. -- nosy: +mrabarnett ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue694374 ___