summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-12-16 12:49:37 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-12-16 12:49:37 (GMT)
commit3d068b2ecfd0e04d61289dce5abed60cd88b4f9f (patch)
tree52135468db5a2c56a1ce63d49785a5e4d47fbb77 /Misc
parentdec59ec5ff9f48d1fe9bf8f5ff3874ef9f0f54ad (diff)
downloadcpython-3d068b2ecfd0e04d61289dce5abed60cd88b4f9f.zip
cpython-3d068b2ecfd0e04d61289dce5abed60cd88b4f9f.tar.gz
cpython-3d068b2ecfd0e04d61289dce5abed60cd88b4f9f.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 c5288f7..73f2398 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -179,6 +179,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 #16298: In HTTPResponse.read(), close the socket when there is no
Content-Length and the incoming stream is finished. Patch by Eran
Rundstein.