summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/sslproto.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-09-12 01:11:19 (GMT)
committerYury Selivanov <yury@magic.io>2016-09-12 01:11:19 (GMT)
commit966321e236548e056b2566ae24f60a2a7cfc2511 (patch)
tree234e9714a7b333b87f79ff734e7de15a56968d5a /Lib/asyncio/sslproto.py
parent0b51fd434156f19aaf9a34f273a55f62047dc1a6 (diff)
parenta05a6ef1ca781e2f98fb4332284aca649f24f75d (diff)
downloadcpython-966321e236548e056b2566ae24f60a2a7cfc2511.zip
cpython-966321e236548e056b2566ae24f60a2a7cfc2511.tar.gz
cpython-966321e236548e056b2566ae24f60a2a7cfc2511.tar.bz2
Merge 3.5 (asyncio)
Diffstat (limited to 'Lib/asyncio/sslproto.py')
-rw-r--r--Lib/asyncio/sslproto.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/asyncio/sslproto.py b/Lib/asyncio/sslproto.py
index f0f642e..92d3c4c 100644
--- a/Lib/asyncio/sslproto.py
+++ b/Lib/asyncio/sslproto.py
@@ -305,6 +305,12 @@ class _SSLProtocolTransport(transports._FlowControlMixin,
"""Get optional transport information."""
return self._ssl_protocol._get_extra_info(name, default)
+ def set_protocol(self, protocol):
+ self._app_protocol = protocol
+
+ def get_protocol(self):
+ return self._app_protocol
+
def is_closing(self):
return self._closed