#24108: Update fnmatch.translate example to show correct output.
Patch by Merlijn van Deen.
This commit is contained in:
parent
11d041a045
commit
10324f88a8
|
@ -85,7 +85,7 @@ patterns.
|
|||
>>>
|
||||
>>> regex = fnmatch.translate('*.txt')
|
||||
>>> regex
|
||||
'.*\\.txt$'
|
||||
'.*\\.txt\\Z(?ms)'
|
||||
>>> reobj = re.compile(regex)
|
||||
>>> reobj.match('foobar.txt')
|
||||
<_sre.SRE_Match object at 0x...>
|
||||
|
|
Loading…
Reference in New Issue