diff options
author | Guido van Rossum <guido@python.org> | 2013-11-25 23:07:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-11-25 23:07:18 (GMT) |
commit | 49c96fb7fadd0bd127f1f5d41c3b757e53093c03 (patch) | |
tree | e67a09e475eea4107373de2d3fc29c39355f0716 /Lib/asyncio/streams.py | |
parent | 000de53624d7904d48caab7b315d2a52938fdb1d (diff) | |
download | cpython-49c96fb7fadd0bd127f1f5d41c3b757e53093c03.zip cpython-49c96fb7fadd0bd127f1f5d41c3b757e53093c03.tar.gz cpython-49c96fb7fadd0bd127f1f5d41c3b757e53093c03.tar.bz2 |
asyncio: Add StreamReaderProtocol to __all__.
Diffstat (limited to 'Lib/asyncio/streams.py')
-rw-r--r-- | Lib/asyncio/streams.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py index 331d28d..50c4c5d 100644 --- a/Lib/asyncio/streams.py +++ b/Lib/asyncio/streams.py @@ -1,6 +1,6 @@ """Stream-related things.""" -__all__ = ['StreamReader', 'StreamReaderProtocol', +__all__ = ['StreamReader', 'StreamWriter', 'StreamReaderProtocol', 'open_connection', 'start_server', ] |