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, valhallasw, vstinner, yselivanov
Date 2015-05-01.19:52:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CAAb4jGkxvUbf2bVbNcboPEMhMFuVECuxOyvht3NbtiYWxAe3iA@mail.gmail.com>
In-reply-to <1430509367.12.0.130720637774.issue24108@psf.upfronthosting.co.za>
Content
Ok.

But in that case, the official documentation should be updated because it
saids that string regex is  *'.*\\.txt\\Z(?ms)'*  and not  *'.*\\.txt$'*.

On the other hand, using this writing seems a bit strange. The 2nd one
should do the job.

*Christophe BAL*
*Enseignant de mathématiques en Lycée **et développeur Python amateur*
*---*
*French math teacher in a "Lycée" **and **Python **amateur developer*

2015-05-01 21:42 GMT+02:00 Merlijn van Deen <report@bugs.python.org>:

>
> Merlijn van Deen added the comment:
>
> As far as I can see, the regex is correct:
>
> \Z
> Matches only at the end of the string.
>
> (?iLmsux)
> The group matches the empty string; the letters set the corresponding
> flags: (...)
>   - re.M (multi-line),
>   - re.S (dot matches all)
>
> See https://docs.python.org/3.4/library/re.html
>
> Do you have an example where the regex does not match a file it should
> match (or matches a file it shouldn't)?
>
> ----------
> nosy: +valhallasw
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue24108>
> _______________________________________
>
History
Date User Action Args
2015-05-01 19:52:22projetmbcsetrecipients: + projetmbc, gvanrossum, vstinner, valhallasw, yselivanov
2015-05-01 19:52:22projetmbclinkissue24108 messages
2015-05-01 19:52:22projetmbccreate