diff options
| author | Guido van Rossum <guido@python.org> | 2013-11-25 15:07:18 -0800 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2013-11-25 15:07:18 -0800 |
| commit | 49c96fb7fadd0bd127f1f5d41c3b757e53093c03 (patch) | |
| tree | e67a09e475eea4107373de2d3fc29c39355f0716 /Lib/asyncio/streams.py | |
| parent | 000de53624d7904d48caab7b315d2a52938fdb1d (diff) | |
| download | cpython-git-49c96fb7fadd0bd127f1f5d41c3b757e53093c03.tar.gz | |
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 331d28d0a4..50c4c5d1c2 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', ] |
