summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-07-27 00:05:58 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-07-27 00:05:58 (GMT)
commit1299a8f3b25a543c79f79e6edaebb033018029ca (patch)
treed6654f73c078b2f969892dc917d2dc755e203848 /Misc
parent5cd3e305e3ef19f6009f3097a7b2ff98b2234bec (diff)
downloadcpython-1299a8f3b25a543c79f79e6edaebb033018029ca.zip
cpython-1299a8f3b25a543c79f79e6edaebb033018029ca.tar.gz
cpython-1299a8f3b25a543c79f79e6edaebb033018029ca.tar.bz2
Fix closes Issue12576 - fix urlopen behavior on sites which do not send (or obsfuscates) Connection: Close header.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d91a993..2d6d315 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ Core and Builtins
Library
-------
+- Issue #12576: Fix urlopen behavior on sites which do not send (or obfuscates)
+ Connection:close header.
+
- Issue #12102: Document that buffered files must be flushed before being used
with mmap. Patch by Steffen Daode Nurpmeso.