summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-03-20 04:10:51 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-03-20 04:10:51 (GMT)
commit9cc7d455718456dd88daf829c29bec9527530b11 (patch)
treecd69e5d356ffef3ae5ab61bcf50b6e4d75f9f3bf /Misc
parentd5a6e25470bb4f40c5bdd586641d7a4fce5fb64a (diff)
downloadcpython-9cc7d455718456dd88daf829c29bec9527530b11.zip
cpython-9cc7d455718456dd88daf829c29bec9527530b11.tar.gz
cpython-9cc7d455718456dd88daf829c29bec9527530b11.tar.bz2
#17485: Delete the Content-Length header if the data attribute is deleted.
This is a follow on to issue 16464. Original patch by Daniel Wozniak.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 600e0bf..21f2cd5 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1341,6 +1341,7 @@ Steven Work
Gordon Worley
Darren Worrall
Thomas Wouters
+Daniel Wozniak
Heiko Wundram
Doug Wyatt
Robert Xiao
diff --git a/Misc/NEWS b/Misc/NEWS
index e7c59b1..8e46c60 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -292,6 +292,9 @@ Core and Builtins
Library
-------
+- Issue #17485: Also delete the Request Content-Length header if the data
+ attribute is deleted. (Follow on to issue 16464).
+
- Issue #15927: CVS now correctly parses escaped newlines and carriage
when parsing with quoting turned off.