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 sleepyfish
Recipients sleepyfish
Date 2009-01-21.05:52:33
SpamBayes Score 0.0043432447
Marked as misclassified No
Message-id <1232517156.3.0.804486335225.issue5020@psf.upfronthosting.co.za>
In-reply-to
Content
import re
re.match(r'[/- ]','/') crash, but re.match(r'[ /-]','/'), or
re.match(r'[/ -]','/'), or re.match(r'[ -/]','/') ...

only when the match pattern is r'[/-]', the program crash

I run it in version 2.6.1 and version 3.0, both having the same problem
History
Date User Action Args
2009-01-21 05:52:37sleepyfishsetrecipients: + sleepyfish
2009-01-21 05:52:36sleepyfishsetmessageid: <1232517156.3.0.804486335225.issue5020@psf.upfronthosting.co.za>
2009-01-21 05:52:34sleepyfishlinkissue5020 messages
2009-01-21 05:52:33sleepyfishcreate