Home
last modified time | relevance | path

Searched refs:AbstractEventLoop (Results 1 – 18 of 18) sorted by relevance

/external/python/pyee/pyee/
Dasyncio.py3 from asyncio import AbstractEventLoop, ensure_future, Future, iscoroutine
37 def __init__(self, loop: Optional[AbstractEventLoop] = None): argument
39 self._loop: Optional[AbstractEventLoop] = loop
/external/python/cpython3/Lib/asyncio/
Dstaggered.py18 loop: events.AbstractEventLoop = None, argument
Devents.py204 class AbstractEventLoop: class
664 assert loop is None or isinstance(loop, AbstractEventLoop)
Dunix_events.py988 assert loop is None or isinstance(loop, events.AbstractEventLoop)
Dbase_events.py389 class BaseEventLoop(events.AbstractEventLoop):
/external/python/cpython3/Misc/NEWS.d/
D3.10.2.rst161 Reflect ``context`` argument in ``AbstractEventLoop.call_*()`` methods. Loop
D3.7.0b1.rst354 Add :meth:`asyncio.AbstractEventLoop.sendfile` method.
D3.10.0a3.rst844 ``asyncio.AbstractEventLoop``.
D3.7.0a3.rst962 Add AbstractEventLoop.sock_recv_into().
D3.8.0b1.rst1488 :meth:`asyncio.AbstractEventLoop.create_datagram_endpoint`: Do not connect
D3.10.0a1.rst1413 Change the method asyncio.AbstractEventLoop.run_in_executor to not be a
D3.8.0a1.rst3671 :meth:`~asyncio.AbstractEventLoop.create_task` method of the event loop. If
3713 :meth:`AbstractEventLoop.set_default_executor`.
/external/python/cpython3/Doc/library/
Dasyncio-policy.rst57 :class:`AbstractEventLoop` interface.
Dasyncio-eventloop.rst1543 .. class:: AbstractEventLoop
1548 methods that an alternative implementation of ``AbstractEventLoop``
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_events.py2452 loop = asyncio.AbstractEventLoop()
2508 loop = asyncio.AbstractEventLoop()
2566 self.assertIsInstance(loop, asyncio.AbstractEventLoop)
2608 self.assertIsInstance(loop, asyncio.AbstractEventLoop)
Dtest_unix_events.py1726 asyncio.AbstractEventLoop)
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1111 :class:`~asyncio.AbstractEventLoop`, meaning alternative event loops that
D3.10.rst899 Add missing :meth:`~asyncio.events.AbstractEventLoop.connect_accepted_socket`