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 ezberch
Recipients ezberch, ezio.melotti, gvanrossum, mrabarnett, pitrou, serhiy.storchaka, tim.peters
Date 2012-11-27.22:19:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1354054750.68.0.685502015661.issue16203@psf.upfronthosting.co.za>
In-reply-to
Content
Patch attached. I've taken a slightly different approach than what has been discussed here: rather than define a new fullmatch() function and method, I've defined a new re.FULLMATCH flag for match(). So an example would be

re.match('abc','abc',re.FULLMATCH)

The implementation is basically what has been discussed here, except done when the regular expression is compiled rather than at the user level.
History
Date User Action Args
2012-11-27 22:19:11ezberchsetrecipients: + ezberch, gvanrossum, tim.peters, pitrou, ezio.melotti, mrabarnett, serhiy.storchaka
2012-11-27 22:19:10ezberchsetmessageid: <1354054750.68.0.685502015661.issue16203@psf.upfronthosting.co.za>
2012-11-27 22:19:10ezberchlinkissue16203 messages
2012-11-27 22:19:09ezberchcreate