asyncio: Add StreamReaderProtocol to __all__.

This commit is contained in:
Guido van Rossum 2013-11-25 15:07:18 -08:00
parent 000de53624
commit 49c96fb7fa
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
"""Stream-related things."""
__all__ = ['StreamReader', 'StreamReaderProtocol',
__all__ = ['StreamReader', 'StreamWriter', 'StreamReaderProtocol',
'open_connection', 'start_server',
]