Searched refs:ProactorEventLoop (Results 1 – 21 of 21) sorted by relevance
/external/python/cpython3/Doc/library/ |
D | asyncio-platforms.rst | 34 On Windows, :class:`ProactorEventLoop` is now the default event loop. 60 :class:`ProactorEventLoop` has the following limitations: 77 On Windows, the default event loop :class:`ProactorEventLoop` supports 82 not supported, as :class:`ProactorEventLoop` has a different mechanism
|
D | asyncio-policy.rst | 95 on Unix and :class:`ProactorEventLoop` on Windows. 102 On Windows, :class:`ProactorEventLoop` is now used by default. 116 :class:`ProactorEventLoop` event loop implementation.
|
D | asyncio-subprocess.rst | 110 Subprocesses are available for Windows if a :class:`ProactorEventLoop` is 307 On Windows subprocesses are provided by :class:`ProactorEventLoop` only (default),
|
D | asyncio-eventloop.rst | 89 :class:`SelectorEventLoop` and :class:`ProactorEventLoop` classes; 461 Added support for SSL/TLS in :class:`ProactorEventLoop`. 673 Added support for SSL/TLS in :class:`ProactorEventLoop`. 1025 Windows. Use :class:`ProactorEventLoop` instead for Windows. 1240 On Windows, the default event loop :class:`ProactorEventLoop` supports 1506 :class:`SelectorEventLoop` and :class:`ProactorEventLoop`. 1509 on Unix and :class:`ProactorEventLoop` on Windows. 1531 .. class:: ProactorEventLoop
|
/external/python/cpython3/Lib/test/test_asyncio/ |
D | test_windows_events.py | 86 self.loop = asyncio.ProactorEventLoop() 263 asyncio.ProactorEventLoop)
|
D | test_buffered_proto.py | 85 return asyncio.ProactorEventLoop()
|
D | test_server.py | 127 return asyncio.ProactorEventLoop()
|
D | test_sendfile.py | 342 if isinstance(self.loop, asyncio.ProactorEventLoop): 539 return asyncio.ProactorEventLoop()
|
D | test_sock_lowlevel.py | 485 return asyncio.ProactorEventLoop()
|
D | test_subprocess.py | 708 self.loop = asyncio.ProactorEventLoop()
|
D | test_sslproto.py | 769 return asyncio.ProactorEventLoop()
|
D | test_proactor_events.py | 958 self.loop = asyncio.ProactorEventLoop()
|
D | test_events.py | 2044 return asyncio.ProactorEventLoop()
|
/external/python/portpicker/src/ |
D | portserver.py | 368 asyncio.set_event_loop(asyncio.ProactorEventLoop())
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0rc1.rst | 75 pause_reading()/resume_reading() when using the ProactorEventLoop.
|
D | 3.9.0b1.rst | 792 Add IPv6 support to :mod:`asyncio` datagram endpoints in ProactorEventLoop.
|
D | 3.8.0a1.rst | 1848 :class:`asyncio.ProactorEventLoop` now catches and logs send errors when the 1927 Fix memory leaks in asyncio ProactorEventLoop on overlapped operation 1946 Fix a memory leak in asyncio in the ProactorEventLoop when ``ReadFile()`` or 1957 Fix ``asyncio.ProactorEventLoop.sendfile()``: don't attempt to set the 3032 On Windows, asyncio now uses ProactorEventLoop, instead of 4286 pause_reading()/resume_reading() when using the ProactorEventLoop.
|
D | 3.10.0a1.rst | 1252 ``asyncio.ProactorEventLoop``: do nothing if the self-pipe socket has been 1331 Restarting a ``ProactorEventLoop`` on Windows no longer logs spurious
|
D | 3.9.0a1.rst | 1247 asynci.ProactorEventLoop.close() now only calls signal.set_wakeup_fd() in
|
/external/python/cpython3/Lib/asyncio/ |
D | windows_events.py | 309 class ProactorEventLoop(proactor_events.BaseProactorEventLoop): class 910 _loop_factory = ProactorEventLoop
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.8.rst | 654 On Windows, the default event loop is now :class:`~asyncio.ProactorEventLoop`. 657 :class:`~asyncio.ProactorEventLoop` now also supports UDP. 660 :class:`~asyncio.ProactorEventLoop` can now be interrupted by
|