commit | d862db0d091a3bb95c185d7365384b8bd22f59be | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Mon Dec 01 13:07:28 2014 +0200 |
committer | Serhiy Storchaka <storchaka@gmail.com> | Mon Dec 01 13:07:28 2014 +0200 |
tree | a635770d97b20721acf9b83e516bca47ad6022de | |
parent | 169f195b660d763b934e229e31eb8ace6170e8fa [diff] [blame] |
Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails. Original patch by Martin Panter.
diff --git a/Misc/NEWS b/Misc/NEWS index 4b42d62..b9835a5 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Library ------- +- Issue #21032. Fixed socket leak if HTTPConnection.getresponse() fails. + Original patch by Martin Panter. + - Issue #22609: Constructors and update methods of mapping classes in the collections module now accept the self keyword argument.