summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-12-17 17:35:56 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-12-17 17:35:56 (GMT)
commit988dbd7bc2bb8a41cf91a12c8bff9a916651769f (patch)
tree897d68ce2dcd275487d04737635a7c92bee97bd6 /Misc
parent7cb3051dc304a0cf8da73a647b259a4dc215ea39 (diff)
downloadcpython-988dbd7bc2bb8a41cf91a12c8bff9a916651769f.zip
cpython-988dbd7bc2bb8a41cf91a12c8bff9a916651769f.tar.gz
cpython-988dbd7bc2bb8a41cf91a12c8bff9a916651769f.tar.bz2
Issue #10711: Remove HTTP 0.9 support from http.client. The `strict`
parameter to HTTPConnection and friends is deprecated.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1fce06c..6e61892 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,10 @@ Core and Builtins
Library
-------
+
+- Issue #10711: Remove HTTP 0.9 support from http.client. The ``strict``
+ parameter to HTTPConnection and friends is deprecated.
+
- Issue #9721: Fix the behavior of urljoin when the relative url starts with a
';' character. Patch by Wes Chow.