Skip to content

Commit 44235bd

Browse files
generatedunixname1734921407115435facebook-github-bot
authored andcommitted
Import upstream CPython branch '3.14'
Summary: Python `3.14.0rc2+` (`3.14`) was **published** on 2025-08-19 11:27:36+00:00. # Commit Info Base: (`3.14.0rc2+`) - `5034b6491a92d2019d1611c1adb02f682b847630` (commit date: 2025-08-18 21:21:55+00:00) Imported: (`3.14.0rc2+`) - `3.14` (commit date: 2025-08-19 11:27:36+00:00) Reviewed By: itamaro Differential Revision: D80613292 fbshipit-source-id: 6578e946f9ef350e282a34b0af37b7a93eab37a4
1 parent 031f545 commit 44235bd

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Doc/library/asyncio-eventloop.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,12 @@ clocks to track time.
304304
custom :class:`contextvars.Context` for the *callback* to run in.
305305
The current context is used when no *context* is provided.
306306

307+
.. note::
308+
309+
For performance, callbacks scheduled with :meth:`loop.call_later`
310+
may run up to one clock-resolution early (see
311+
``time.get_clock_info('monotonic').resolution``).
312+
307313
.. versionchanged:: 3.7
308314
The *context* keyword-only parameter was added. See :pep:`567`
309315
for more details.
@@ -324,6 +330,12 @@ clocks to track time.
324330
An instance of :class:`asyncio.TimerHandle` is returned which can
325331
be used to cancel the callback.
326332

333+
.. note::
334+
335+
For performance, callbacks scheduled with :meth:`loop.call_at`
336+
may run up to one clock-resolution early (see
337+
``time.get_clock_info('monotonic').resolution``).
338+
327339
.. versionchanged:: 3.7
328340
The *context* keyword-only parameter was added. See :pep:`567`
329341
for more details.

0 commit comments

Comments
 (0)