Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/asyncio/
Dstreams.py25 class IncompleteReadError(EOFError): class
483 except IncompleteReadError as e:
572 raise IncompleteReadError(chunk, None)
666 raise IncompleteReadError(incomplete, n)
/external/python/cpython3/Doc/library/
Dasyncio-stream.rst138 Read exactly *n* bytes. Raise an :exc:`IncompleteReadError` if the end of
140 :attr:`IncompleteReadError.partial` attribute of the exception contains
158 an :exc:`IncompleteReadError` exception will be
160 :attr:`IncompleteReadError.partial` attribute may contain the
262 IncompleteReadError chapter
265 .. exception:: IncompleteReadError
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_streams.py440 with self.assertRaises(asyncio.IncompleteReadError) as cm:
511 with self.assertRaises(asyncio.IncompleteReadError) as cm: