Home
last modified time | relevance | path

Searched refs:call_at (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Lib/test/test_asyncio/
Dutils.py468 def call_at(self, when, callback, *args, context=None): member in TestLoop
470 return super().call_at(when, callback, *args, context=context)
Dtest_base_events.py279 self.loop.call_at(when, cb)
303 loop.call_at(loop.time() + 60, cb)
307 loop.call_at(loop.time() + 60, cb)
1912 self.loop.call_at(self.loop.time() + 60, func)
Dtest_events.py1731 self.loop.call_at(self.loop.time() + .0, func)
2470 NotImplementedError, loop.call_at, f, f)
/third_party/python/Lib/asyncio/
Devents.py267 def call_at(self, when, callback, *args, context=None): member in AbstractEventLoop
Dbase_events.py713 timer = self.call_at(self.time() + delay, callback, *args,
719 def call_at(self, when, callback, *args, context=None): member in BaseEventLoop
/third_party/python/Doc/library/
Dasyncio-dev.rst54 :meth:`loop.call_at` methods) raise an exception if they are called
Dasyncio-llapi-index.rst95 * - :meth:`loop.call_at`
Dasyncio-eventloop.rst285 .. method:: loop.call_at(when, callback, *args, context=None)
1390 and :meth:`loop.call_at`.
/third_party/python/Doc/whatsnew/
D3.7.rst649 :meth:`loop.call_at() <asyncio.loop.call_at>`, and