[docs] [issue8402] Add a function to escape metacharacters in glob/fnmatch

Serhiy Storchaka report at bugs.python.org
Wed Dec 5 20:31:10 CET 2012


Serhiy Storchaka added the comment:

It is good, if stdlib has function for escaping any special characters, even if this function is simple. There are already escape functions for re and sgml/xml/html.

Private function glob.glob1 used in Lib/msilib and Tools/msi to prevent unexpected globbing in parent directory name. ``glob.glob1(dirname, pattern)`` should be replaced by ``glob.glob(os.path.join(fnmatch.escape(dirname), pattern)`` in external code.

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue8402>
_______________________________________


More information about the docs mailing list