SSLProtocol: set the _transport attribute in the constructor

This commit is contained in:
Victor Stinner 2015-01-15 13:16:27 +01:00
parent 791009bb89
commit 7e222f411c

View file

@ -417,6 +417,7 @@ def __init__(self, loop, app_protocol, sslcontext, waiter,
self._session_established = False
self._in_handshake = False
self._in_shutdown = False
self._transport = None
def connection_made(self, transport):
"""Called when the low-level connection is made.