]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
asyncio: Add StreamReaderProtocol to __all__.
authorGuido van Rossum <guido@python.org>
Mon, 25 Nov 2013 23:07:18 +0000 (15:07 -0800)
committerGuido van Rossum <guido@python.org>
Mon, 25 Nov 2013 23:07:18 +0000 (15:07 -0800)
Lib/asyncio/streams.py

index 331d28d0a45d4d4be95b7b4af656ef758dd1b665..50c4c5d1c2ec101ff3bb9ae7e698d40616ccc1f0 100644 (file)
@@ -1,6 +1,6 @@
 """Stream-related things."""
 
-__all__ = ['StreamReader', 'StreamReaderProtocol',
+__all__ = ['StreamReader', 'StreamWriter', 'StreamReaderProtocol',
            'open_connection', 'start_server',
            ]