File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -298,6 +298,12 @@ clocks to track time.
298
298
custom :class: `contextvars.Context ` for the *callback * to run in.
299
299
The current context is used when no *context * is provided.
300
300
301
+ .. note ::
302
+
303
+ For performance, callbacks scheduled with :meth: `loop.call_later `
304
+ may run up to one clock-resolution early (see
305
+ ``time.get_clock_info('monotonic').resolution ``).
306
+
301
307
.. versionchanged :: 3.7
302
308
The *context * keyword-only parameter was added. See :pep: `567 `
303
309
for more details.
@@ -318,6 +324,12 @@ clocks to track time.
318
324
An instance of :class: `asyncio.TimerHandle ` is returned which can
319
325
be used to cancel the callback.
320
326
327
+ .. note ::
328
+
329
+ For performance, callbacks scheduled with :meth: `loop.call_at `
330
+ may run up to one clock-resolution early (see
331
+ ``time.get_clock_info('monotonic').resolution ``).
332
+
321
333
.. versionchanged :: 3.7
322
334
The *context * keyword-only parameter was added. See :pep: `567 `
323
335
for more details.
You can’t perform that action at this time.
0 commit comments