summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-03-10 21:06:00 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-03-10 21:06:00 (GMT)
commit30781e93b09c035510677f93321b1a69873744fe (patch)
tree90e2fb8eecfd40ba4a9908afd4cec105173f01b2 /Misc
parent0c5598beaf6984853659572194002f2ea0b20e76 (diff)
downloadcpython-30781e93b09c035510677f93321b1a69873744fe.zip
cpython-30781e93b09c035510677f93321b1a69873744fe.tar.gz
cpython-30781e93b09c035510677f93321b1a69873744fe.tar.bz2
whatsnew: urllib Request objects are now reusable.
#16464, #17485, #17272.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6222f59..f8dda9e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -3053,7 +3053,7 @@ Library
to procedurally generate, in an easy way, small test instances.
- Issue #17485: Also delete the Request Content-Length header if the data
- attribute is deleted. (Follow on to issue 16464).
+ attribute is deleted. (Follow on to issue Issue #16464).
- Issue #15927: CVS now correctly parses escaped newlines and carriage
when parsing with quoting turned off.
@@ -3477,6 +3477,9 @@ Library
list() calls aren't added to filter(), map(), and zip() which are directly
passed enumerate().
+- Issue #16464: Reset the Content-Length header when a urllib Request is reused
+ with new data.
+
- Issue #12848: The pure Python pickle implementation now treats object
lengths as unsigned 32-bit integers, like the C implementation does.
Patch by Serhiy Storchaka.