Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
0056936a
Commit
0056936a
authored
Jan 03, 2014
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whatsnew: deprecation of HTTPConnection's strict parameter.
parent
42fa1100
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
Doc/library/http.client.rst
Doc/library/http.client.rst
+6
-6
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+4
-1
No files found.
Doc/library/http.client.rst
View file @
0056936a
...
...
@@ -52,8 +52,8 @@ The module provides the following classes:
*source_address* was added.
.. versionchanged:: 3.4
The *strict* parameter
i
s removed. HTTP 0.9-style "Simple Responses" are
not supported.
The *strict* parameter
wa
s removed. HTTP 0.9-style "Simple Responses" are
not
longer
supported.
.. class:: HTTPSConnection(host, port=None, key_file=None, \
...
...
@@ -90,8 +90,8 @@ The module provides the following classes:
if :data:`ssl.HAS_SNI` is true).
.. versionchanged:: 3.4
The *strict* parameter
i
s removed. HTTP 0.9-style "Simple Responses" are
no
t supported anymore
.
The *strict* parameter
wa
s removed. HTTP 0.9-style "Simple Responses" are
no
longer supported
.
.. class:: HTTPResponse(sock, debuglevel=0, method=None, url=None)
...
...
@@ -100,8 +100,8 @@ The module provides the following classes:
instantiated directly by user.
.. versionchanged:: 3.4
The *strict* parameter
i
s removed. HTTP 0.9 style "Simple Responses" are
no
t supported anymore
.
The *strict* parameter
wa
s removed. HTTP 0.9 style "Simple Responses" are
no
longer supported
.
The following exceptions are raised as appropriate:
...
...
Doc/whatsnew/3.4.rst
View file @
0056936a
...
...
@@ -1303,7 +1303,7 @@ removed in Python 3.4:
* The unmaintained ``Misc/TextMate`` and ``Misc/vim`` directories have been
removed (see the `devguide <http://docs.python.org/devguide>`_
for what to use instead).
for
suggestions on
what to use instead).
* The ``SO`` makefile macro is removed (it was replaced by the
``SHLIB_SUFFIX`` and ``EXT_SUFFIX`` macros) (:issue:`16754`).
...
...
@@ -1314,6 +1314,9 @@ removed in Python 3.4:
* ``PyLoader`` and ``PyPycLoader`` have been removed from :mod:`importlib`.
(Contributed by Taras Lyapun in :issue:`15641`.)
* The *strict* argument to :class:`~http.client.HTTPConnection` has been
removed. HTTP 0.9-style "Simple Responses" are no longer supported.
Porting to Python 3.4
=====================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment