diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-12-16 12:49:37 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-12-16 12:49:37 (GMT) |
commit | 3d068b2ecfd0e04d61289dce5abed60cd88b4f9f (patch) | |
tree | 52135468db5a2c56a1ce63d49785a5e4d47fbb77 /Misc | |
parent | dec59ec5ff9f48d1fe9bf8f5ff3874ef9f0f54ad (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |