Searched refs:stream_reader (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_windows_events.py | 71 stream_reader = asyncio.StreamReader(loop=self.loop) 72 protocol = asyncio.StreamReaderProtocol(stream_reader, 78 clients.append((stream_reader, trans))
|
/external/python/cpython3/Lib/asyncio/ |
D | streams.py | 223 def __init__(self, stream_reader, client_connected_cb=None, loop=None): argument 225 self._stream_reader = stream_reader
|
/external/python/cpython3/Doc/library/ |
D | asyncio-stream.rst | 247 .. class:: StreamReaderProtocol(stream_reader, client_connected_cb=None, loop=None) 252 *stream_reader* is a :class:`StreamReader` instance, *client_connected_cb* 253 is an optional function called with (stream_reader, stream_writer) when a
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.0.rst | 207 4-element tuple: ``(encode_func, decode_func, stream_reader, stream_writer)``. 219 * *stream_reader* is a class that supports decoding input from a stream. 220 *stream_reader(file_obj)* returns an object that supports the :meth:`read`,
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.0.rst | 207 4-element tuple: ``(encode_func, decode_func, stream_reader, stream_writer)``. 219 * *stream_reader* is a class that supports decoding input from a stream. 220 *stream_reader(file_obj)* returns an object that supports the :meth:`read`,
|