Kaydet (Commit) 01f5ae7b authored tarafından Victor Stinner's avatar Victor Stinner

Issue #26273: Document TCP_USER_TIMEOUT and TCP_CONGESTION

üst ad942255
...@@ -300,8 +300,8 @@ Constants ...@@ -300,8 +300,8 @@ Constants
provided. provided.
.. versionchanged:: 3.6 .. versionchanged:: 3.6
``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC`` ``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``,
were added. ``TCP_USER_TIMEOUT``, ``TCP_CONGESTION`` were added.
.. data:: AF_CAN .. data:: AF_CAN
PF_CAN PF_CAN
......
...@@ -1371,6 +1371,9 @@ The socket module now supports the address family ...@@ -1371,6 +1371,9 @@ The socket module now supports the address family
(Contributed by Christian Heimes in :issue:`27744` with support from (Contributed by Christian Heimes in :issue:`27744` with support from
Victor Stinner.) Victor Stinner.)
New Linux constants ``TCP_USER_TIMEOUT`` and ``TCP_CONGESTION`` were added.
(Contributed by Omar Sandoval, issue:`26273`).
socketserver socketserver
------------ ------------
......
...@@ -256,6 +256,10 @@ Library ...@@ -256,6 +256,10 @@ Library
may be revisited again after the Python 2.7 branch is no longer officially may be revisited again after the Python 2.7 branch is no longer officially
supported. supported.
- Issue #26273: Add new :data:`socket.TCP_CONGESTION` (Linux 2.6.13) and
:data:`socket.TCP_USER_TIMEOUT` (Linux 2.6.37) constants. Patch written by
Omar Sandoval.
- Issue #24142: Reading a corrupt config file left configparser in an - Issue #24142: Reading a corrupt config file left configparser in an
invalid state. Original patch by Florian Höch. invalid state. Original patch by Florian Höch.
...@@ -323,10 +327,6 @@ Core and Builtins ...@@ -323,10 +327,6 @@ Core and Builtins
Library Library
------- -------
- Issue #26273: Add new :data:`socket.TCP_CONGESTION` (Linux 2.6.13) and
:data:`socket.TCP_USER_TIMEOUT` (Linux 2.6.37) constants. Patch written by
Omar Sandoval.
- Issue #28752: Restored the __reduce__() methods of datetime objects. - Issue #28752: Restored the __reduce__() methods of datetime objects.
- Issue #28727: Regular expression patterns, _sre.SRE_Pattern objects created - Issue #28727: Regular expression patterns, _sre.SRE_Pattern objects created
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment