mirror of https://github.com/python/cpython
Merge 3.6 (issue #28089)
This commit is contained in:
commit
8bf85b692b
|
@ -25,6 +25,9 @@ the transport's kind.
|
|||
|
||||
The transport classes are :ref:`not thread safe <asyncio-multithreading>`.
|
||||
|
||||
.. versionchanged:: 3.6
|
||||
The socket option ``TCP_NODELAY`` is now set by default.
|
||||
|
||||
|
||||
BaseTransport
|
||||
-------------
|
||||
|
|
|
@ -875,6 +875,9 @@ Notable changes in the :mod:`asyncio` module since Python 3.5.0
|
|||
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.
|
||||
(Contributed by Yury Selivanov in :issue:`27456`.)
|
||||
|
||||
|
||||
binascii
|
||||
--------
|
||||
|
|
Loading…
Reference in New Issue