summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-16 12:54:14 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-16 12:54:14 (GMT)
commit39a6ee20ac5f353a6b8204864d9491deb997ef88 (patch)
tree976c0abc2e1a9edf4c55f65bd913739d8f10ef79 /Misc
parent09bc642153fc1b601909fd27d5bd728b9842fa98 (diff)
parent3c331bb729b78419da455b9f8be81b566cb7a489 (diff)
downloadcpython-39a6ee20ac5f353a6b8204864d9491deb997ef88.zip
cpython-39a6ee20ac5f353a6b8204864d9491deb997ef88.tar.gz
cpython-39a6ee20ac5f353a6b8204864d9491deb997ef88.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 6be851e..fcbfb9f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -167,6 +167,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.