HomeSort by relevance Sort by last modified time
    Searched refs:IncompleteReadError (Results 1 - 2 of 2) sorted by null

  /external/python/cpython3/Lib/asyncio/
streams.py 5 'IncompleteReadError',
25 class IncompleteReadError(EOFError):
483 except IncompleteReadError as e:
507 an IncompleteReadError exception will be raised, and the internal
508 buffer will be reset. The IncompleteReadError.partial attribute
572 raise IncompleteReadError(chunk, None)
641 Raise an IncompleteReadError if EOF is reached before `n` bytes can be
642 read. The IncompleteReadError.partial attribute of the exception will
666 raise IncompleteReadError(incomplete, n)
  /external/python/cpython3/Lib/test/test_asyncio/
test_streams.py 440 with self.assertRaises(asyncio.IncompleteReadError) as cm:
511 with self.assertRaises(asyncio.IncompleteReadError) as cm:

Completed in 61 milliseconds