[Python-checkins] cpython: asyncio: Add StreamReaderProtocol to __all__.

guido.van.rossum python-checkins at python.org
Tue Nov 26 00:07:25 CET 2013


http://hg.python.org/cpython/rev/3ac8f9d5c2d8
changeset:   87566:3ac8f9d5c2d8
user:        Guido van Rossum <guido at python.org>
date:        Mon Nov 25 15:07:18 2013 -0800
summary:
  asyncio: Add StreamReaderProtocol to __all__.

files:
  Lib/asyncio/streams.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/asyncio/streams.py b/Lib/asyncio/streams.py
--- 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',
            ]
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list