summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-03-09 02:23:21 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-03-09 02:23:21 (GMT)
commit1cd0e85d0176be2ad39d4f215eec0540351423e8 (patch)
treed25c9da0e0a3f4fe014e852499843d4f530bf10f /Doc
parentc210de1ea130f225ffa46548604f84f280bb1a80 (diff)
downloadcpython-1cd0e85d0176be2ad39d4f215eec0540351423e8.zip
cpython-1cd0e85d0176be2ad39d4f215eec0540351423e8.tar.gz
cpython-1cd0e85d0176be2ad39d4f215eec0540351423e8.tar.bz2
whatsnew: glob.escape.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst8
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
-------