Home
last modified time | relevance | path

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

/external/python/cpython3/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.rst84 :class:`SelectorEventLoop` and :class:`ProactorEventLoop` classes;
999 With :class:`SelectorEventLoop` event loop, the *pipe* is set to
1015 With :class:`SelectorEventLoop` event loop, the *pipe* is set to
1020 :class:`SelectorEventLoop` does not support the above methods on
1498 :class:`SelectorEventLoop` and :class:`ProactorEventLoop`.
1500 By default asyncio is configured to use :class:`SelectorEventLoop`
1504 .. class:: SelectorEventLoop
1516 loop = asyncio.SelectorEventLoop(selector)
Dasyncio-subprocess.rst311 :class:`SelectorEventLoop` has no subprocess support.
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_sock_lowlevel.py472 return asyncio.SelectorEventLoop()
488 return asyncio.SelectorEventLoop(
496 return asyncio.SelectorEventLoop(selectors.EpollSelector())
503 return asyncio.SelectorEventLoop(selectors.PollSelector())
510 return asyncio.SelectorEventLoop(selectors.SelectSelector())
Dtest_sendfile.py524 return asyncio.SelectorEventLoop()
540 return asyncio.SelectorEventLoop(
548 return asyncio.SelectorEventLoop(selectors.EpollSelector())
555 return asyncio.SelectorEventLoop(selectors.PollSelector())
562 return asyncio.SelectorEventLoop(selectors.SelectSelector())
Dtest_buffered_proto.py77 return asyncio.SelectorEventLoop()
Dtest_server.py74 return asyncio.SelectorEventLoop()
Dtest_windows_events.py249 asyncio.SelectorEventLoop)
Dtest_events.py2014 return asyncio.SelectorEventLoop()
2058 return asyncio.SelectorEventLoop(
2083 return asyncio.SelectorEventLoop(selectors.EpollSelector())
2091 return asyncio.SelectorEventLoop(selectors.PollSelector())
2099 return asyncio.SelectorEventLoop(selectors.SelectSelector())
Dtest_sslproto.py765 return asyncio.SelectorEventLoop()
Dtest_unix_events.py51 self.loop = asyncio.SelectorEventLoop()
274 self.loop = asyncio.SelectorEventLoop()
Dtest_base_events.py1058 self.loop = asyncio.SelectorEventLoop()
/external/python/cpython3/Lib/asyncio/
Dwindows_events.py897 SelectorEventLoop = _WindowsSelectorEventLoop variable
901 _loop_factory = SelectorEventLoop
Dunix_events.py1465 SelectorEventLoop = _UnixSelectorEventLoop variable
/external/python/cpython3/Misc/NEWS.d/
D3.8.0b1.rst1374 Fix :meth:`asyncio.SelectorEventLoop.subprocess_exec()` leaks file
D3.8.0a1.rst3033 SelectorEventLoop, by default.