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

  /external/python/cpython3/Lib/asyncio/
__init__.py 8 from .base_events import *
25 __all__ = (base_events.__all__ +
proactor_events.py 14 from . import base_events
99 if isinstance(exc, base_events._FATAL_ERROR_IGNORE):
450 base_events._set_nodelay(sock)
481 class BaseProactorEventLoop(base_events.BaseEventLoop):
sslproto.py 8 from . import base_events
699 if isinstance(exc, base_events._FATAL_ERROR_IGNORE):
selector_events.py 21 from . import base_events
42 class BaseSelectorEventLoop(base_events.BaseEventLoop):
660 if isinstance(exc, base_events._FATAL_ERROR_IGNORE):
725 base_events._set_nodelay(self._sock)
    [all...]
unix_events.py 16 from . import base_events
308 server = base_events.Server(self, [sock], protocol_factory,
720 if isinstance(exc, base_events._FATAL_ERROR_IGNORE):
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_base_events.py 1 """Tests for base_events.py"""
15 from asyncio import base_events
46 return mock.patch('asyncio.base_events.socket',
63 base_events._ipaddr_info('1.2.3.4', 1, INET, STREAM, TCP))
67 base_events._ipaddr_info(b'1.2.3.4', 1, INET, STREAM, TCP))
71 base_events._ipaddr_info('1.2.3.4', 1, UNSPEC, STREAM, TCP))
75 base_events._ipaddr_info('1.2.3.4', 1, UNSPEC, DGRAM, UDP))
80 base_events._ipaddr_info('1.2.3.4', 1, UNSPEC, STREAM, 0))
85 base_events._ipaddr_info('1.2.3.4', 1, UNSPEC, DGRAM, 0))
89 base_events._ipaddr_info('1.2.3.4', 1, UNSPEC, 0, 0)
    [all...]
utils.py 29 from asyncio import base_events
302 class TestLoop(base_events.BaseEventLoop):
test_events.py 30 from asyncio import base_events
865 @mock.patch('asyncio.base_events.socket')
    [all...]
test_unix_events.py 25 from asyncio import base_events
125 @mock.patch('asyncio.base_events.logger')
142 @mock.patch('asyncio.base_events.logger')
187 @mock.patch('asyncio.base_events.logger')
    [all...]

Completed in 6283 milliseconds