summaryrefslogtreecommitdiff
path: root/asyncio/streams.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2013-11-25 15:04:47 -0800
committerGuido van Rossum <guido@python.org>2013-11-25 15:04:47 -0800
commitb10808c19b0ac2cdb689cc850e2a906d43eb709f (patch)
tree88893783f6589fe32efc8d9ea8c02873efc088c8 /asyncio/streams.py
parentcda1ab72e44a7d103d7b31edd493d35ab835114b (diff)
downloadtrollius-b10808c19b0ac2cdb689cc850e2a906d43eb709f.tar.gz
Add StreamReaderProtocol to __all__.
Diffstat (limited to 'asyncio/streams.py')
-rw-r--r--asyncio/streams.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/asyncio/streams.py b/asyncio/streams.py
index 331d28d..50c4c5d 100644
--- a/asyncio/streams.py
+++ b/asyncio/streams.py
@@ -1,6 +1,6 @@
"""Stream-related things."""
-__all__ = ['StreamReader', 'StreamReaderProtocol',
+__all__ = ['StreamReader', 'StreamWriter', 'StreamReaderProtocol',
'open_connection', 'start_server',
]