#24108: Update fnmatch.translate example to show correct output.

Patch by Merlijn van Deen.
This commit is contained in:
R David Murray 2015-05-02 15:09:22 -04:00
parent 11d041a045
commit 10324f88a8
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ patterns.
>>> >>>
>>> regex = fnmatch.translate('*.txt') >>> regex = fnmatch.translate('*.txt')
>>> regex >>> regex
'.*\\.txt$' '.*\\.txt\\Z(?ms)'
>>> reobj = re.compile(regex) >>> reobj = re.compile(regex)
>>> reobj.match('foobar.txt') >>> reobj.match('foobar.txt')
<_sre.SRE_Match object at 0x...> <_sre.SRE_Match object at 0x...>