From: Guido van Rossum Date: Mon, 25 Nov 2013 23:07:18 +0000 (-0800) Subject: asyncio: Add StreamReaderProtocol to __all__. X-Git-Tag: v3.4.0b2~480 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49c96fb7fadd0bd127f1f5d41c3b757e53093c03;p=thirdparty%2FPython%2Fcpython.git asyncio: Add StreamReaderProtocol to __all__. --- diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py index 331d28d0a45d..50c4c5d1c2ec 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', ]