[issue35314] fnmatch failed with leading caret (^)

Serhiy Storchaka report at bugs.python.org
Mon Nov 26 08:10:15 EST 2018


Serhiy Storchaka <storchaka+cpython at gmail.com> added the comment:

'^' is not considered as a special character in shell-style wildcards. Use '!' for negating the character set: '[!b].py'.

https://docs.python.org/3/library/fnmatch.html

`man bash` describes the behavior of Bash, not Python.

----------
nosy: +serhiy.storchaka
resolution:  -> not a bug
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue35314>
_______________________________________


More information about the Python-bugs-list mailing list