bpo-29728: Provide socket.TCP_NOTSENT_LOWAT (#477)

* Provide socket.TCP_NOTSENT_LOWAT
* New TCP option available on recent MacOS and Linux.
* Document addition of TCP_NOTSENT_LOWAT
This commit is contained in:
Nathaniel J. Smith 2017-03-22 20:56:55 -07:00 committed by Mariatta
parent fad7f15606
commit 1e2147b9d7
3 changed files with 9 additions and 0 deletions

View File

@ -303,6 +303,9 @@ Constants
``SO_DOMAIN``, ``SO_PROTOCOL``, ``SO_PEERSEC``, ``SO_PASSSEC``,
``TCP_USER_TIMEOUT``, ``TCP_CONGESTION`` were added.
.. versionchanged:: 3.7
``TCP_NOTSENT_LOWAT`` was added.
.. data:: AF_CAN
PF_CAN
SOL_CAN_*

View File

@ -317,6 +317,9 @@ Library
- bpo-28682: Added support for bytes paths in os.fwalk().
- bpo-29728: Add new :data:`socket.TCP_NOTSENT_LOWAT` (Linux 3.12) constant.
Patch by Nathaniel J. Smith.
- bpo-29623: Allow use of path-like object as a single argument in
ConfigParser.read(). Patch by David Ellis.

View File

@ -7507,6 +7507,9 @@ PyInit__socket(void)
#ifdef TCP_USER_TIMEOUT
PyModule_AddIntMacro(m, TCP_USER_TIMEOUT);
#endif
#ifdef TCP_NOTSENT_LOWAT
PyModule_AddIntMacro(m, TCP_NOTSENT_LOWAT);
#endif
/* IPX options */
#ifdef IPX_TYPE