summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Quinlan <brian@sweetapp.com>2011-03-20 02:29:57 (GMT)
committerBrian Quinlan <brian@sweetapp.com>2011-03-20 02:29:57 (GMT)
commit72bd8b7bba58bfa01648a68a85606d82d5c7ce9b (patch)
tree213a58558965945ed61af7a63a06940f942967d8
parent142fad4b6b1f33bb4620e7aec29ea1dfd8cc8fdb (diff)
parentd0654ef289e6a499c6760d8979153a4e3819ccc4 (diff)
downloadcpython-72bd8b7bba58bfa01648a68a85606d82d5c7ce9b.zip
cpython-72bd8b7bba58bfa01648a68a85606d82d5c7ce9b.tar.gz
cpython-72bd8b7bba58bfa01648a68a85606d82d5c7ce9b.tar.bz2
Branch merge
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8ed08d1..7557baf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -75,6 +75,10 @@ Core and Builtins
Library
-------
+- Issue #11563: Connection:close header is sent by requests using URLOpener
+ class which helps in closing of sockets after connection is over. Patch
+ contributions by Jeff McNeil and Nadeem Vawda.
+
- Issue #11459: A ``bufsize`` value of 0 in subprocess.Popen() really creates
unbuffered pipes, such that select() works properly on them.