From: Serhiy Storchaka Date: Sat, 6 Sep 2014 18:43:49 +0000 (+0300) Subject: Issue #19524: Fixed resource leak in the HTTP connection when an invalid X-Git-Tag: v3.5.0a1~948 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=91453026ffab6f0b3278417dc6348f3310d70be0;p=thirdparty%2FPython%2Fcpython.git Issue #19524: Fixed resource leak in the HTTP connection when an invalid response is received. Patch by Martin Panter. --- 91453026ffab6f0b3278417dc6348f3310d70be0 diff --cc Misc/NEWS index eb7585249338,edbd80b09469..90e3874c2ff5 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -132,13 -32,9 +132,16 @@@ Core and Builtin Library ------- + - Issue #19524: Fixed resource leak in the HTTP connection when an invalid + response is received. Patch by Martin Panter. + +- Issue #20421: Add a .version() method to SSL sockets exposing the actual + protocol version in use. + +- Issue #19546: configparser exceptions no longer expose implementation details. + Chained KeyErrors are removed, which leads to cleaner tracebacks. Patch by + Claudiu Popa. + - Issue #22051: turtledemo no longer reloads examples to re-run them. Initialization of variables and gui setup should be done in main(), which is called each time a demo is run, but not on import.