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 projetmbc
Recipients gvanrossum, projetmbc, vstinner, yselivanov
Date 2015-05-01.19:36:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430509015.84.0.479562940364.issue24108@psf.upfronthosting.co.za>
In-reply-to
Content
Hello.

I find the following bug on Python 3.4.

>>> import fnmatch, re
>>> regex = fnmatch.translate('*.txt')
>>> regex
'.*\\.txt\\Z(?ms)'

The string regex should be '.*\\.txt$'.
History
Date User Action Args
2015-05-01 19:36:55projetmbcsetrecipients: + projetmbc, gvanrossum, vstinner, yselivanov
2015-05-01 19:36:55projetmbcsetmessageid: <1430509015.84.0.479562940364.issue24108@psf.upfronthosting.co.za>
2015-05-01 19:36:55projetmbclinkissue24108 messages
2015-05-01 19:36:55projetmbccreate