diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-16 19:05:33 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-16 19:05:33 +0200 |
commit | 16b7b7d6acf82a63af80d55da8bf0c71edc9c8b4 (patch) | |
tree | 66a646db6f8514974ec00106d8dd13eee4e77a75 /Lib/asyncio | |
parent | 20cdffd8304522a5c10b53f3dccef7e9f5d685bb (diff) | |
parent | b1461aa78139cd849b507049a77ad2635b78f8a3 (diff) | |
download | cpython-git-16b7b7d6acf82a63af80d55da8bf0c71edc9c8b4.tar.gz |
Merge heads
Diffstat (limited to 'Lib/asyncio')
-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 804c5c30f1..c2c4b95fcb 100644 --- a/Lib/asyncio/sslproto.py +++ b/Lib/asyncio/sslproto.py @@ -479,6 +479,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 |