summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-01-19 02:50:18 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-01-19 02:50:18 (GMT)
commit044242360d093ec56cd08860f25da7e024e118b9 (patch)
tree04ae26bff1390f1d10117cf7be508d0c10365645 /Misc
parent42953535686f7a8ed4dc250d9c87187c20462c1f (diff)
downloadcpython-044242360d093ec56cd08860f25da7e024e118b9.zip
cpython-044242360d093ec56cd08860f25da7e024e118b9.tar.gz
cpython-044242360d093ec56cd08860f25da7e024e118b9.tar.bz2
fix handling of 100-continue status code (closes #18574)
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 b831e49..0d2c13d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Core and Builtins
Library
-------
+- Issue #18574: Fixed handling of 100-continue reply from server in
+ http.client.HTTPConnection. Patch by Nikolaus Rath.
+
- Issue #20270: urllib.urlparse now supports empty ports.
- Issue #20243: TarFile no longer raise ReadError when opened in write mode.