summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
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 /Doc/whatsnew
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 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.5.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst
index 38ea2f2..d72e7f3 100644
--- a/Doc/whatsnew/3.5.rst
+++ b/Doc/whatsnew/3.5.rst
@@ -141,6 +141,13 @@ doctest
*module* contains no docstrings instead of raising :exc:`ValueError`
(contributed by Glenn Jones in :issue:`15916`).
+glob
+----
+
+* :func:`~glob.iglob` and :func:`~glob.glob` now support recursive search in
+ subdirectories using the "``**``" pattern.
+ (Contributed by Serhiy Storchaka in :issue:`13968`.)
+
imaplib
-------