summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-06 18:41:39 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-06 18:41:39 (GMT)
commitf54c350160c16cdaf9f692e0f61ef062d4f379f4 (patch)
tree2d75c60bdc81c8837372c9e61e5f9f471c5f57a5 /Misc/NEWS
parent1d52096d1466ed771c22a2d97e8cae6935fcdf8e (diff)
downloadcpython-f54c350160c16cdaf9f692e0f61ef062d4f379f4.zip
cpython-f54c350160c16cdaf9f692e0f61ef062d4f379f4.tar.gz
cpython-f54c350160c16cdaf9f692e0f61ef062d4f379f4.tar.bz2
Issue #19524: Fixed resource leak in the HTTP connection when an invalid
response is received. Patch by Martin Panter.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 11435b9..edbd80b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #19524: Fixed resource leak in the HTTP connection when an invalid
+ response is received. Patch by Martin Panter.
+
- 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.