Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Dexceptions.py29 class IncompleteReadError(EOFError): class
Dstreams.py541 except exceptions.IncompleteReadError as e:
629 raise exceptions.IncompleteReadError(chunk, None)
721 raise exceptions.IncompleteReadError(incomplete, n)
/external/python/cpython3/Doc/library/
Dasyncio-exceptions.rst52 .. exception:: IncompleteReadError
Dasyncio-stream.rst191 Raise an :exc:`IncompleteReadError` if EOF is reached before *n*
192 can be read. Use the :attr:`IncompleteReadError.partial`
208 an :exc:`IncompleteReadError` exception is raised, and the internal
209 buffer is reset. The :attr:`IncompleteReadError.partial` attribute
/external/python/cpython3/Misc/NEWS.d/
D3.9.1.rst84 Clarify the error message for :exc:`asyncio.IncompleteReadError` when
D3.6.4rc1.rst353 Make asyncio.IncompleteReadError and LimitOverrunError pickleable.
D3.7.0a3.rst582 Make asyncio.IncompleteReadError and LimitOverrunError pickleable.
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_streams.py459 with self.assertRaisesRegex(asyncio.IncompleteReadError,
530 with self.assertRaises(asyncio.IncompleteReadError) as cm:
882 e = asyncio.IncompleteReadError(b'abc', 10)