From: Antoine Pitrou Date: Sun, 16 Dec 2012 12:50:19 +0000 (+0100) Subject: Issue #16626: Fix infinite recursion in glob.glob() on Windows when the pattern conta... X-Git-Tag: v3.3.1rc1~525 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c331bb729b78419da455b9f8be81b566cb7a489;p=python 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. --- 3c331bb729b78419da455b9f8be81b566cb7a489 diff --cc Misc/NEWS index 82b770dc14,73f23982b3..822f8fcc6e --- a/Misc/NEWS +++ 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.