[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-15 Thread Ned Deily
Ned Deily added the comment: [cherrypicked for 3.6.0rc2] -- priority: deferred blocker -> ___ Python tracker ___

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-15 Thread Roundup Robot
Roundup Robot added the comment: New changeset dfd1019f75f9 by Yury Selivanov in branch '3.6': Issue #28089: Document TCP_NODELAY in asyncio https://hg.python.org/cpython/rev/dfd1019f75f9 -- ___ Python tracker

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-12 Thread Yury Selivanov
Yury Selivanov added the comment: > Yury, look good to you? Yes; committed the patch with a small addition. Thanks, Mariatta! -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 853e3f4d6cd9 by Yury Selivanov in branch '3.6': Issue #28089: Document TCP_NODELAY in asyncio https://hg.python.org/cpython/rev/853e3f4d6cd9 New changeset 0d209cc7ffdc by Yury Selivanov in branch 'default': Merge 3.6 (issue #28089)

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-12 Thread Ned Deily
Ned Deily added the comment: Yury, look good to you? -- stage: patch review -> commit review versions: +Python 3.7 ___ Python tracker ___

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 150d36dbe3ba by Victor Stinner in branch '3.6': warnings: Fix the issue number https://hg.python.org/cpython/rev/150d36dbe3ba -- ___ Python tracker

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-06 Thread Roundup Robot
Roundup Robot added the comment: New changeset 726308cfe3b5 by Victor Stinner in branch '3.6': catch_warnings() calls showwarning() if overriden https://hg.python.org/cpython/rev/726308cfe3b5 -- nosy: +python-dev ___ Python tracker

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: Thanks, Berker :) Updated. -- Added file: http://bugs.python.org/file45772/issue28089v2.patch ___ Python tracker ___

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-05 Thread Berker Peksag
Berker Peksag added the comment: +.. versionchanged:: 3.6.0 3.6.0 -> 3.6 + The socket option TCP_NODELAY is now set by default. TCP_NODELAY -> ``TCP_NODELAY`` -- nosy: +berker.peksag stage: needs patch -> patch review ___ Python tracker

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-05 Thread Mariatta Wijaya
Mariatta Wijaya added the comment: I added the following to Doc/library/asyncio-protocol.rst .. versionchanged:: 3.6.0 The socket option TCP_NODELAY is now set by default. Let me know if this patch works. -- keywords: +patch Added file:

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-05 Thread STINNER Victor
STINNER Victor added the comment: > The change is that TCP_NODELAY option is set by default in 3.6. It was not > the case in 3.5. Ah, it's a change in _asyncio_, ok. I missed that from the issue title, so I changed the title. -- ___ Python tracker

[issue28089] asyncio: Document that TCP_NODELAY is now used by default

2016-12-05 Thread STINNER Victor
Changes by STINNER Victor : -- title: Document TCP_NODELAY by default -> asyncio: Document that TCP_NODELAY is now used by default ___ Python tracker