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 mlesniew
Recipients ezio.melotti, mlesniew
Date 2011-11-15.19:01:05
SpamBayes Score 4.7673516e-06
Marked as misclassified No
Message-id <1321383674.07.0.558206383571.issue13409@psf.upfronthosting.co.za>
In-reply-to
Content
If a regular expression ends with a backslash, an exception is raised. Of course, the backslash has to be escaped. The simplest example, that causes the error is a regular expression, that should match only a single backslash:

    import re
    r = re.compile("\\")
History
Date User Action Args
2011-11-15 19:01:14mlesniewsetrecipients: + mlesniew, ezio.melotti
2011-11-15 19:01:14mlesniewsetmessageid: <1321383674.07.0.558206383571.issue13409@psf.upfronthosting.co.za>
2011-11-15 19:01:05mlesniewlinkissue13409 messages
2011-11-15 19:01:05mlesniewcreate