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 verdy_p
Recipients ezio.melotti, verdy_p
Date 2009-10-15.00:26:54
SpamBayes Score 3.4600656e-05
Marked as misclassified No
Message-id <1255566416.16.0.833186659301.issue7132@psf.upfronthosting.co.za>
In-reply-to
Content
>> And anyway, my suggestion is certainly much more useful than atomic 
>> groups and possessive groups that have much lower use [...]
>Then why no one implemented it yet? :)

That's because they had to use something else than regexps to do their 
parsing. All those that had to do that *pested* that the regexps were 
not capturing all occurences.

And then later they regretted it, because they had to fix their 
alternate code (such as those using the bogous split() alternatives...) 
and finally rewrote their own parsers (sometimes with a combination of 
(f)lex+yacc/bison, even if the full expression was given in a single 
regexp which was expressive enough to match only the exact match they 
wanted, but without using the returned captured groups): this means an 
extra parsing for the found substring (in their correct context) in 
order to process it.
History
Date User Action Args
2009-10-15 00:26:56verdy_psetrecipients: + verdy_p, ezio.melotti
2009-10-15 00:26:56verdy_psetmessageid: <1255566416.16.0.833186659301.issue7132@psf.upfronthosting.co.za>
2009-10-15 00:26:55verdy_plinkissue7132 messages
2009-10-15 00:26:54verdy_pcreate