Skip to content

Commit 532026d

Browse files
Update version this will go into
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
1 parent 3c37a5e commit 532026d

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Doc/library/http.client.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The module provides the following classes:
6969
.. versionchanged:: 3.7
7070
*blocksize* parameter was added.
7171

72-
.. versionchanged:: 3.14
72+
.. versionchanged:: next
7373
*continue_timeout* parameter was added.
7474

7575

@@ -327,7 +327,7 @@ HTTPConnection Objects
327327
No attempt is made to determine the Content-Length for file
328328
objects.
329329

330-
.. versionchanged:: 3.14
330+
.. versionchanged:: next
331331
If the headers include ``Expect: 100-Continue`` and *body* is set,
332332
the body will not be sent until either a ``100 Continue`` response is
333333
received from the server or the :class:`HTTPConnection`'s *continue_timeout*
@@ -355,7 +355,7 @@ HTTPConnection Objects
355355
:class:`HTTPConnection` object will be ready to reconnect when
356356
a new request is sent.
357357

358-
.. versionchanged:: 3.14
358+
.. versionchanged:: next
359359
Added the *ignore_100_continue* parameter. (In prior versions
360360
a ``Continue`` response was always ignored.)
361361

@@ -493,7 +493,7 @@ also send your request step by step, by using the four functions below.
493493
.. versionchanged:: 3.6
494494
Added chunked encoding support and the *encode_chunked* parameter.
495495

496-
.. versionadded:: 3.14
496+
.. versionadded:: next
497497
The *expect_continue* parameter was added.
498498

499499

@@ -674,7 +674,7 @@ method attribute. Here is an example session that uses the ``PUT`` method::
674674
>>> print(response.status, response.reason)
675675
200, OK
676676

677-
Since version 3.14, conditional transmission of the body is supported when an
677+
Since version 3.15, conditional transmission of the body is supported when an
678678
``Expect: 100-Continue`` header is set. To use this in a simple case, just
679679
set the header, and optionally the time for which the client should wait for
680680
a ``100 Continue`` response before sending the body regardless::
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
``http.client.HTTPConnection`` now waits for a ``100 Continue`` response
1+
:class:`http.client.HTTPConnection` now waits for a ``100 Continue`` response
22
before sending body content if the ``Expect: 100-Continue`` header is set.

0 commit comments

Comments
 (0)