diff options
author | R David Murray <rdmurray@bitdance.com> | 2014-03-09 02:23:21 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2014-03-09 02:23:21 (GMT) |
commit | 1cd0e85d0176be2ad39d4f215eec0540351423e8 (patch) | |
tree | d25c9da0e0a3f4fe014e852499843d4f530bf10f /Doc | |
parent | c210de1ea130f225ffa46548604f84f280bb1a80 (diff) | |
download | cpython-1cd0e85d0176be2ad39d4f215eec0540351423e8.zip cpython-1cd0e85d0176be2ad39d4f215eec0540351423e8.tar.gz cpython-1cd0e85d0176be2ad39d4f215eec0540351423e8.tar.bz2 |
whatsnew: glob.escape.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.4.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst index 54af9d4..df15c5a 100644 --- a/Doc/whatsnew/3.4.rst +++ b/Doc/whatsnew/3.4.rst @@ -793,6 +793,14 @@ dictionaries containing the collections statistics since interpreter startup. (Contributed by Antoine Pitrou in :issue:`16351`.) +glob +---- + +A new function :func:`~glob.escape` provides a way to escape special characters +in a filename so that they do not become part of the globbing expansion but are +instead matched literally. (Contributed by Serhiy Storchaka in :issue:`8402`.) + + hashlib ------- |