cpython: 853e3f4d6cd9 (original) (raw)

Mercurial > cpython

changeset 105599:853e3f4d6cd9 3.6

Issue #28089: Document TCP_NODELAY in asyncio Initial patch by Mariatta Wijaya. [#28089]

Yury Selivanov yury@magic.io
date Mon, 12 Dec 2016 16:44:58 -0500
parents 5bd248c2cc75
children 0d209cc7ffdc e89c9ab46d77
files Doc/library/asyncio-protocol.rst Doc/whatsnew/3.6.rst
diffstat 2 files changed, 6 insertions(+), 0 deletions(-)[+] [-] Doc/library/asyncio-protocol.rst 3 Doc/whatsnew/3.6.rst 3

line wrap: on

line diff

--- a/Doc/library/asyncio-protocol.rst +++ b/Doc/library/asyncio-protocol.rst @@ -25,6 +25,9 @@ the transport's kind. The transport classes are :ref:not thread safe <asyncio-multithreading>. +.. versionchanged:: 3.6

BaseTransport -------------

--- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -875,6 +875,9 @@ Notable changes in the :mod:asyncio mo but that use asyncio to handle them. (Contributed by Jim Fulton in :issue:27392.) +* TCP_NODELAY flag is now set for all TCP transports by default.