diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-11-29 15:55:04 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-11-29 15:55:04 (GMT) |
commit | 4f8dc3d15c94e4c0bbc871695336845839578458 (patch) | |
tree | 18d44b898eae112c926e3dddf1e99e8a60282988 /Misc | |
parent | baa7223bcd64bc092c51548caaef1fb52782ae52 (diff) | |
download | cpython-4f8dc3d15c94e4c0bbc871695336845839578458.zip cpython-4f8dc3d15c94e4c0bbc871695336845839578458.tar.gz cpython-4f8dc3d15c94e4c0bbc871695336845839578458.tar.bz2 |
Add TCP_CONGESTION and TCP_USER_TIMEOUT
Issue #26273: Add new socket.TCP_CONGESTION (Linux 2.6.13) and
socket.TCP_USER_TIMEOUT (Linux 2.6.37) constants.
Patch written by Omar Sandoval.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -160,6 +160,10 @@ Core and Builtins 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 #28727: Regular expression patterns, _sre.SRE_Pattern objects created |