diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-16 19:06:17 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-16 19:06:17 +0200 |
commit | 5173cc143dd36adbef4fb13c3b6b30677e59d2e3 (patch) | |
tree | b92d54670c774a8e88e030d9d779c9d5a2044180 /Lib/asyncio/sslproto.py | |
parent | 5160caba46c7411145016dcd487e1f8d95d1866f (diff) | |
parent | 7c3e71163b9aa53caf5e5b73520a07968f39686c (diff) | |
download | cpython-git-5173cc143dd36adbef4fb13c3b6b30677e59d2e3.tar.gz |
Merge heads
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 |