summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-19 08:58:45 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-19 08:58:45 (GMT)
commitd34b57a9a2810e79d6f6aa7dc12832c4e4b214a5 (patch)
treea16209eba6109a3dac0779b159cd09feef54c3b9 /Misc
parent15e848b0767c41e6badc45316d60aa588d7e5ac1 (diff)
parent5fa4a896016e8a265b6afee64c61a1083c6ffa47 (diff)
downloadcpython-d34b57a9a2810e79d6f6aa7dc12832c4e4b214a5.zip
cpython-d34b57a9a2810e79d6f6aa7dc12832c4e4b214a5.tar.gz
cpython-d34b57a9a2810e79d6f6aa7dc12832c4e4b214a5.tar.bz2
merge - Fix Issue14721: Send Content-length: 0 for empty body () in the http.client requests
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 2794e16..013c8f1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,9 @@ Core and Builtins
Library
-------
+- Issue #14721: Send the correct 'Content-length: 0' header when the body is an
+ empty string ''. Initial Patch contributed by Arve Knudsen.
+
- Issue #9374: Generic parsing of query and fragment portions of url for any
scheme. Supported both by RFC3986 and RFC2396.