]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #19524: Fixed resource leak in the HTTP connection when an invalid
authorSerhiy Storchaka <storchaka@gmail.com>
Sat, 6 Sep 2014 18:43:49 +0000 (21:43 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Sat, 6 Sep 2014 18:43:49 +0000 (21:43 +0300)
response is received.  Patch by Martin Panter.

1  2 
Lib/test/test_urllib.py
Misc/ACKS
Misc/NEWS

Simple merge
diff --cc Misc/ACKS
Simple merge
diff --cc Misc/NEWS
index eb75852493387b7e13e15679b5e1d123984c1199,edbd80b09469fbe35dac27b881711b9e34a0516d..90e3874c2ff5cfdd32db0964213591188de77c3d
+++ 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.