summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2011-03-20 01:27:25 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2011-03-20 01:27:25 (GMT)
commitd0654ef289e6a499c6760d8979153a4e3819ccc4 (patch)
treed4d0ac23b374f4d418e5d51b9bb58d024f966f2a /Misc
parent833d91204fe864fea881a2cdc292e792095f2d52 (diff)
parent799c669283b007f7067fc5b6f4662e35e6d83276 (diff)
downloadcpython-d0654ef289e6a499c6760d8979153a4e3819ccc4.zip
cpython-d0654ef289e6a499c6760d8979153a4e3819ccc4.tar.gz
cpython-d0654ef289e6a499c6760d8979153a4e3819ccc4.tar.bz2
Merge NEWS entry edit.
Diffstat (limited to 'Misc')
-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.