summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-11 09:17:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-11 09:17:37 (GMT)
commitc2edcdd194356b26873e5304216c313e847b4159 (patch)
tree4f49e9e163484968b129ae625f5d1dcc9cee43f5 /Misc
parentd5fd6188e286a52334e24ef1ce4467618c2c1271 (diff)
downloadcpython-c2edcdd194356b26873e5304216c313e847b4159.zip
cpython-c2edcdd194356b26873e5304216c313e847b4159.tar.gz
cpython-c2edcdd194356b26873e5304216c313e847b4159.tar.bz2
Issue #13968: The glob module now supports recursive search in
subdirectories using the "**" pattern.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b9a112d..38235b8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -132,6 +132,9 @@ Core and Builtins
Library
-------
+- Issue #13968: The glob module now supports recursive search in
+ subdirectories using the "**" pattern.
+
- Issue #21951: Fixed a crash in Tkinter on AIX when called Tcl command with
empty string or tuple argument.