[Python-checkins] gh-103417: use time.monotonic in the example for sched.scheduler (GH-103418)

miss-islington webhook-mailer at python.org
Wed Apr 12 05:09:25 EDT 2023


https://github.com/python/cpython/commit/e643412ef443b7a6847833f1e140b567622ac383
commit: e643412ef443b7a6847833f1e140b567622ac383
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2023-04-12T02:09:08-07:00
summary:

gh-103417: use time.monotonic in the example for sched.scheduler (GH-103418)

(cherry picked from commit f2b7ecb7783299c4555e89125ca9ba8e89854643)

Co-authored-by: Nick Burns <nburns at users.noreply.github.com>

files:
M Doc/library/sched.rst

diff --git a/Doc/library/sched.rst b/Doc/library/sched.rst
index a051c65b97b0..04215d31ba10 100644
--- a/Doc/library/sched.rst
+++ b/Doc/library/sched.rst
@@ -36,7 +36,7 @@ scheduler:
 Example::
 
    >>> import sched, time
-   >>> s = sched.scheduler(time.time, time.sleep)
+   >>> s = sched.scheduler(time.monotonic, time.sleep)
    >>> def print_time(a='default'):
    ...     print("From print_time", time.time(), a)
    ...



More information about the Python-checkins mailing list