mirror of
https://github.com/python/cpython.git
synced 2025-07-29 14:15:07 +00:00
Issue #28089: Document TCP_NODELAY in asyncio
Initial patch by Mariatta Wijaya.
This commit is contained in:
parent
10beb3cfef
commit
3432f2f47c
2 changed files with 6 additions and 0 deletions
|
@ -25,6 +25,9 @@ the transport's kind.
|
||||||
|
|
||||||
The transport classes are :ref:`not thread safe <asyncio-multithreading>`.
|
The transport classes are :ref:`not thread safe <asyncio-multithreading>`.
|
||||||
|
|
||||||
|
.. versionchanged:: 3.6
|
||||||
|
The socket option ``TCP_NODELAY`` is now set by default.
|
||||||
|
|
||||||
|
|
||||||
BaseTransport
|
BaseTransport
|
||||||
-------------
|
-------------
|
||||||
|
|
|
@ -875,6 +875,9 @@ Notable changes in the :mod:`asyncio` module since Python 3.5.0
|
||||||
but that use asyncio to handle them.
|
but that use asyncio to handle them.
|
||||||
(Contributed by Jim Fulton in :issue:`27392`.)
|
(Contributed by Jim Fulton in :issue:`27392`.)
|
||||||
|
|
||||||
|
* ``TCP_NODELAY`` flag is now set for all TCP transports by default.
|
||||||
|
(Contributed by Yury Selivanov in :issue:`27456`.)
|
||||||
|
|
||||||
|
|
||||||
binascii
|
binascii
|
||||||
--------
|
--------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue