diff options
author | Georg Brandl <georg@python.org> | 2008-03-22 22:04:10 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-22 22:04:10 (GMT) |
commit | e8f1b00372891ddf6e42886bff397c43dad7a4eb (patch) | |
tree | ed62d4d8c7055404bbfbd1382afadd443cce6944 /Doc/library/sched.rst | |
parent | 7a45ab826e9b2ecaee49cc8fd206631395a48927 (diff) | |
download | cpython-e8f1b00372891ddf6e42886bff397c43dad7a4eb.zip cpython-e8f1b00372891ddf6e42886bff397c43dad7a4eb.tar.gz cpython-e8f1b00372891ddf6e42886bff397c43dad7a4eb.tar.bz2 |
Enable doctest running for several other documents.
We have now over 640 doctests that are run with "make doctest".
Diffstat (limited to 'Doc/library/sched.rst')
-rw-r--r-- | Doc/library/sched.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sched.rst b/Doc/library/sched.rst index 420ae20..3b83f4a 100644 --- a/Doc/library/sched.rst +++ b/Doc/library/sched.rst @@ -25,7 +25,7 @@ scheduler: Example:: >>> import sched, time - >>> s=sched.scheduler(time.time, time.sleep) + >>> s = sched.scheduler(time.time, time.sleep) >>> def print_time(): print "From print_time", time.time() ... >>> def print_some_times(): |