summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/transports.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/asyncio/transports.py')
-rw-r--r--Lib/asyncio/transports.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/asyncio/transports.py b/Lib/asyncio/transports.py
index c2feb93..2d2469e 100644
--- a/Lib/asyncio/transports.py
+++ b/Lib/asyncio/transports.py
@@ -4,7 +4,9 @@ import sys
PY34 = sys.version_info >= (3, 4)
-__all__ = ['ReadTransport', 'WriteTransport', 'Transport']
+__all__ = ['BaseTransport', 'ReadTransport', 'WriteTransport',
+ 'Transport', 'DatagramTransport', 'SubprocessTransport',
+ ]
class BaseTransport: