aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/asyncio/transports.py
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2016-09-11 21:11:19 -0400
committerYury Selivanov <yury@magic.io>2016-09-11 21:11:19 -0400
commit966321e236548e056b2566ae24f60a2a7cfc2511 (patch)
tree234e9714a7b333b87f79ff734e7de15a56968d5a /Lib/asyncio/transports.py
parent0b51fd434156f19aaf9a34f273a55f62047dc1a6 (diff)
parenta05a6ef1ca781e2f98fb4332284aca649f24f75d (diff)
downloadcpython-966321e236548e056b2566ae24f60a2a7cfc2511.tar.gz
cpython-966321e236548e056b2566ae24f60a2a7cfc2511.zip
Merge 3.5 (asyncio)
Diffstat (limited to 'Lib/asyncio/transports.py')
-rw-r--r--Lib/asyncio/transports.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py
index 9a6d9197d9a..0db08757156 100644
--- a/Lib/asyncio/transports.py
+++ b/Lib/asyncio/transports.py
@@ -33,6 +33,14 @@ class BaseTransport:
"""
raise NotImplementedError
+ def set_protocol(self, protocol):
+ """Set a new protocol."""
+ raise NotImplementedError
+
+ def get_protocol(self):
+ """Return the current protocol."""
+ raise NotImplementedError
+
class ReadTransport(BaseTransport):
"""Interface for read-only transports."""