summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-07-27 00:06:44 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-07-27 00:06:44 (GMT)
commit7496fef8ff3ef9c54929a916cd5d42cd6fcdd437 (patch)
tree7df63b5f2861b48f3549a19bc270fcd1cc18e437 /Misc
parentd3b2aefbfe69df40dc2f0adf31a188fbbdcc5923 (diff)
parent1299a8f3b25a543c79f79e6edaebb033018029ca (diff)
downloadcpython-7496fef8ff3ef9c54929a916cd5d42cd6fcdd437.zip
cpython-7496fef8ff3ef9c54929a916cd5d42cd6fcdd437.tar.gz
cpython-7496fef8ff3ef9c54929a916cd5d42cd6fcdd437.tar.bz2
merge from 3.2 - 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 6010328..380b038 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -237,6 +237,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.