]> granicus.if.org Git - python/commitdiff
Issue #16626: Fix infinite recursion in glob.glob() on Windows when the pattern conta...
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 16 Dec 2012 12:50:19 +0000 (13:50 +0100)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 16 Dec 2012 12:50:19 +0000 (13:50 +0100)
Patch by Serhiy Storchaka.

1  2 
Lib/test/test_glob.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 82b770dc14d16eb418937e30bce16df182b04dd8,73f23982b3e4a7f8113a3470bc8b9aead7a9c6a4..822f8fcc6e6a65981bc4a906ff4302a53bcfda1a
+++ b/Misc/NEWS
@@@ -108,10 -179,10 +108,14 @@@ Core and Builtin
  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.
 +
  - Issue #16298: In HTTPResponse.read(), close the socket when there is no
    Content-Length and the incoming stream is finished.  Patch by Eran
    Rundstein.