cpython: 5913c2b1d80a (original) (raw)

Mercurial > cpython

changeset 104307:5913c2b1d80a

Merge 3.6 (issue #28370) [#28370]

Yury Selivanov yury@magic.io
date Wed, 05 Oct 2016 18:04:48 -0400
parents 745e0ff513c2(current diff)b76553de3a29(diff)
children 893f65369fea
files Misc/NEWS
diffstat 2 files changed, 19 insertions(+), 18 deletions(-)[+] [-] Lib/asyncio/streams.py 34 Misc/NEWS 3

line wrap: on

line diff

--- a/Lib/asyncio/streams.py +++ b/Lib/asyncio/streams.py @@ -448,6 +448,7 @@ class StreamReader: assert not self._eof, '_wait_for_data after EOF' # Waiting for data while paused will make deadlock, so prevent it.

@@ -658,25 +659,22 @@ class StreamReader: if n == 0: return b''

+

-

-

if compat.PY35: @coroutine

--- a/Misc/NEWS +++ b/Misc/NEWS @@ -181,6 +181,9 @@ Library