Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3432f2f

Browse files
committed
Issue #28089: Document TCP_NODELAY in asyncio
Initial patch by Mariatta Wijaya.
1 parent 10beb3c commit 3432f2f

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

Doc/library/asyncio-protocol.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ the transport's kind.
2525

2626
The transport classes are :ref:`not thread safe <asyncio-multithreading>`.
2727

28+
.. versionchanged:: 3.6
29+
The socket option ``TCP_NODELAY`` is now set by default.
30+
2831

2932
BaseTransport
3033
-------------

Doc/whatsnew/3.6.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -875,6 +875,9 @@ Notable changes in the :mod:`asyncio` module since Python 3.5.0
875875
but that use asyncio to handle them.
876876
(Contributed by Jim Fulton in :issue:`27392`.)
877877

878+
* ``TCP_NODELAY`` flag is now set for all TCP transports by default.
879+
(Contributed by Yury Selivanov in :issue:`27456`.)
880+
878881

879882
binascii
880883
--------

0 commit comments

Comments
 (0)