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

  /external/python/cpython3/Lib/test/test_asyncio/
test_proactor_events.py 551 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
553 buf_proto.get_buffer.side_effect = lambda hint: buf
555 tr.set_protocol(buf_proto)
563 buf_proto.buffer_updated.assert_called_with(4)
574 buf_proto = test_utils.make_test_protocol(asyncio.BufferedProtocol)
576 buf_proto.get_buffer.side_effect = lambda hint: buf
578 tr.set_protocol(buf_proto)
579 self.assertFalse(buf_proto.get_buffer.called)
581 buf_proto.get_buffer.assert_called_with(-1)
    [all...]
test_selector_events.py     [all...]

Completed in 414 milliseconds