Home
last modified time | relevance | path

Searched refs:readexactly (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/test/test_asyncio/
Dtest_streams.py474 data = self.loop.run_until_complete(stream.readexactly(0))
479 self.loop.run_until_complete(stream.readexactly(-1))
487 read_task = self.loop.create_task(stream.readexactly(n))
502 data = self.loop.run_until_complete(stream.readexactly(5))
510 read_task = self.loop.create_task(stream.readexactly(n))
529 data = self.loop.run_until_complete(stream.readexactly(2))
534 ValueError, self.loop.run_until_complete, stream.readexactly(2))
Dtest_buffered_proto.py57 await reader.readexactly(1)
/third_party/python/Lib/asyncio/
Dstreams.py678 async def readexactly(self, n): member in StreamReader
/third_party/python/Doc/library/
Dasyncio-stream.rst209 .. coroutinemethod:: readexactly(n)
/third_party/python/Misc/NEWS.d/
D3.6.0b2.rst663 Speedup asyncio.StreamReader.readexactly. Patch by Коренберг Марк.
D3.5.3rc1.rst1569 Speedup asyncio.StreamReader.readexactly. Patch by Коренберг Марк.
D3.7.0a1.rst4665 Speedup asyncio.StreamReader.readexactly. Patch by Коренберг Марк.
/third_party/python/Doc/whatsnew/
D3.6.rst859 * The performance of :meth:`StreamReader.readexactly() <asyncio.StreamReader.readexactly>`
/third_party/python/Misc/
DHISTORY2625 uses a separate context manager; readexactly() raises if not enough
2885 - Issue #20154: Deadlock in asyncio.StreamReader.readexactly().