diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-16 18:34:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-01-16 18:34:09 (GMT) |
commit | f7fb7626d925bc9457d6d08580758dcb6a8adaf0 (patch) | |
tree | 684bc1e16049028d3401ac75f9d9f66403949c83 | |
parent | bcba43496c9bf655d84a144cbec53797dd748211 (diff) | |
download | cpython-f7fb7626d925bc9457d6d08580758dcb6a8adaf0.zip cpython-f7fb7626d925bc9457d6d08580758dcb6a8adaf0.tar.gz cpython-f7fb7626d925bc9457d6d08580758dcb6a8adaf0.tar.bz2 |
Mention HTTP 0.9's partial demise.
-rw-r--r-- | Doc/whatsnew/3.2.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index e8cf628..d643c75 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1898,3 +1898,9 @@ require changes to your code: or race conditions when open file descriptors would leak into the child process. +* Support for legacy HTTP 0.9 has been removed from :mod:`urllib.request` + and :mod:`http.client`. Such support is still present on the server side + (in :mod:`http.server`). + + (Contributed by Antoine Pitrou, :issue:`10711`.) + |