summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-16 12:50:19 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-16 12:50:19 (GMT)
commit3c331bb729b78419da455b9f8be81b566cb7a489 (patch)
treefc4d13b0097f323d7a075dd030ab4846238cff40 /Misc
parent9ca589333844997713394b65dba9548c5887e750 (diff)
parent3d068b2ecfd0e04d61289dce5abed60cd88b4f9f (diff)
downloadcpython-3c331bb729b78419da455b9f8be81b566cb7a489.zip
cpython-3c331bb729b78419da455b9f8be81b566cb7a489.tar.gz
cpython-3c331bb729b78419da455b9f8be81b566cb7a489.tar.bz2
Issue #16626: Fix infinite recursion in glob.glob() on Windows when the pattern contains a wildcard in the drive or UNC path.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 82b770d..822f8fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -108,6 +108,10 @@ Core and Builtins
Library
-------
+- Issue #16626: Fix infinite recursion in glob.glob() on Windows when the
+ pattern contains a wildcard in the drive or UNC path. Patch by Serhiy
+ Storchaka.
+
- Issue #15783: Except for the number methods, the C version of decimal now
supports all None default values present in decimal.py. These values were
largely undocumented.