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 pitrou
Recipients gvanrossum, pitrou, serhiy.storchaka, tim.peters
Date 2012-10-11.21:58:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1349992737.27.0.775591208177.issue16203@psf.upfronthosting.co.za>
In-reply-to
Content
> Note that this really can't be done in user-level code.

Well, how about:

def fullmatch(regex, input, flags=0):
    return re.match("(:?" + regex + ")$", input, flags)
History
Date User Action Args
2012-10-11 21:58:57pitrousetrecipients: + pitrou, gvanrossum, tim.peters, serhiy.storchaka
2012-10-11 21:58:57pitrousetmessageid: <1349992737.27.0.775591208177.issue16203@psf.upfronthosting.co.za>
2012-10-11 21:58:57pitroulinkissue16203 messages
2012-10-11 21:58:57pitroucreate