diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-01-18 02:42:52 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-01-18 02:42:52 (GMT) |
commit | 6d22c3961d5cdb7dd29bac4e111bdd55a3c925f3 (patch) | |
tree | c4214744186b43f811f84d3b70674ae5ab3197aa /Doc/library/sched.rst | |
parent | a13d4fbca46fc7ea2d20acc011ab799fcc760ff0 (diff) | |
download | cpython-6d22c3961d5cdb7dd29bac4e111bdd55a3c925f3.zip cpython-6d22c3961d5cdb7dd29bac4e111bdd55a3c925f3.tar.gz cpython-6d22c3961d5cdb7dd29bac4e111bdd55a3c925f3.tar.bz2 |
Typo fix
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 95ec499..420ae20 100644 --- a/Doc/library/sched.rst +++ b/Doc/library/sched.rst @@ -43,7 +43,7 @@ Example:: In multi-threaded environments, the :class:`scheduler` class has limitations with respect to thread-safety, inability to insert a new task before -the one currently pending in a running scheduler, and holding-up the main +the one currently pending in a running scheduler, and holding up the main thread until the event queue is empty. Instead, the preferred approach is to use the :class:`threading.Timer` class instead. |