diff options
author | Yury Selivanov <yury@magic.io> | 2016-12-16 11:52:36 -0500 |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2016-12-16 11:52:36 -0500 |
commit | 7c3e71163b9aa53caf5e5b73520a07968f39686c (patch) | |
tree | 4f6f5d0fd68c41602f151a63062e8952a3def893 /Lib/asyncio/sslproto.py | |
parent | 5ab81d787f455ba28367b5b71606cea376283574 (diff) | |
parent | 11c135136d1fd5a14afdfeabf9d8fcd386a1c105 (diff) | |
download | cpython-git-7c3e71163b9aa53caf5e5b73520a07968f39686c.tar.gz |
Merge 3.6 (issue #28990)
Diffstat (limited to 'Lib/asyncio/sslproto.py')
-rw-r--r-- | Lib/asyncio/sslproto.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py index 991c77b482..7ad28d6aa0 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -480,6 +480,7 @@ class SSLProtocol(protocols.Protocol): self._loop.call_soon(self._app_protocol.connection_lost, exc) self._transport = None self._app_transport = None + self._wakeup_waiter(exc) def pause_writing(self): """Called when the low-level transport's buffer goes over |