Home
last modified time | relevance | path

Searched refs:SelectorEventLoop (Results 1 – 17 of 17) sorted by relevance

/third_party/python/Doc/library/
Dasyncio-platforms.rst45 :class:`SelectorEventLoop` has the following limitations:
78 subprocesses, whereas :class:`SelectorEventLoop` does not.
95 character devices on these versions. The :class:`SelectorEventLoop`
104 loop = asyncio.SelectorEventLoop(selector)
Dasyncio-policy.rst94 The default asyncio policy. Uses :class:`SelectorEventLoop`
108 :class:`SelectorEventLoop` event loop implementation.
Dasyncio-eventloop.rst89 :class:`SelectorEventLoop` and :class:`ProactorEventLoop` classes;
1013 With :class:`SelectorEventLoop` event loop, the *pipe* is set to
1029 With :class:`SelectorEventLoop` event loop, the *pipe* is set to
1034 :class:`SelectorEventLoop` does not support the above methods on
1251 subprocesses, whereas :class:`SelectorEventLoop` does not. See
1516 :class:`SelectorEventLoop` and :class:`ProactorEventLoop`.
1518 By default asyncio is configured to use :class:`SelectorEventLoop`
1522 .. class:: SelectorEventLoop
1534 loop = asyncio.SelectorEventLoop(selector)
Dasyncio-subprocess.rst316 :class:`SelectorEventLoop` has no subprocess support.
/third_party/python/Lib/test/test_asyncio/
Dtest_sock_lowlevel.py476 return asyncio.SelectorEventLoop()
492 return asyncio.SelectorEventLoop(
500 return asyncio.SelectorEventLoop(selectors.EpollSelector())
507 return asyncio.SelectorEventLoop(selectors.PollSelector())
514 return asyncio.SelectorEventLoop(selectors.SelectSelector())
Dtest_sendfile.py529 return asyncio.SelectorEventLoop()
545 return asyncio.SelectorEventLoop(
553 return asyncio.SelectorEventLoop(selectors.EpollSelector())
560 return asyncio.SelectorEventLoop(selectors.PollSelector())
567 return asyncio.SelectorEventLoop(selectors.SelectSelector())
Dtest_buffered_proto.py77 return asyncio.SelectorEventLoop()
Dtest_server.py73 return asyncio.SelectorEventLoop()
Dtest_windows_events.py249 asyncio.SelectorEventLoop)
Dtest_events.py2037 return asyncio.SelectorEventLoop()
2081 return asyncio.SelectorEventLoop(
2106 return asyncio.SelectorEventLoop(selectors.EpollSelector())
2114 return asyncio.SelectorEventLoop(selectors.PollSelector())
2122 return asyncio.SelectorEventLoop(selectors.SelectSelector())
Dtest_sslproto.py762 return asyncio.SelectorEventLoop()
Dtest_unix_events.py60 self.loop = asyncio.SelectorEventLoop()
283 self.loop = asyncio.SelectorEventLoop()
Dtest_base_events.py1067 self.loop = asyncio.SelectorEventLoop()
/third_party/python/Lib/asyncio/
Dwindows_events.py902 SelectorEventLoop = _WindowsSelectorEventLoop variable
906 _loop_factory = SelectorEventLoop
Dunix_events.py1465 SelectorEventLoop = _UnixSelectorEventLoop variable
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst1374 Fix :meth:`asyncio.SelectorEventLoop.subprocess_exec()` leaks file
D3.8.0a1.rst3033 SelectorEventLoop, by default.