Home
last modified time | relevance | path

Searched refs:IncompleteReadError (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Lib/asyncio/
Dstreams.py22 class IncompleteReadError(EOFError): class
497 except IncompleteReadError as e:
585 raise IncompleteReadError(chunk, None)
677 raise IncompleteReadError(incomplete, n)
/external/python/cpython3/Doc/library/
Dasyncio-stream.rst189 Raise an :exc:`IncompleteReadError` if EOF is reached before *n*
190 can be read. Use the :attr:`IncompleteReadError.partial`
206 an :exc:`IncompleteReadError` exception is raised, and the internal
207 buffer is reset. The :attr:`IncompleteReadError.partial` attribute
Dasyncio-exceptions.rst66 .. exception:: IncompleteReadError
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_streams.py442 with self.assertRaises(asyncio.IncompleteReadError) as cm:
513 with self.assertRaises(asyncio.IncompleteReadError) as cm:
847 e = asyncio.IncompleteReadError(b'abc', 10)
/external/python/cpython3/Misc/NEWS.d/
D3.6.4rc1.rst356 Make asyncio.IncompleteReadError and LimitOverrunError pickleable.
D3.7.0a3.rst586 Make asyncio.IncompleteReadError and LimitOverrunError pickleable.