[Python-checkins] r60034 - python/trunk/Doc/library/sched.rst
andrew.kuchling
python-checkins at python.org
Fri Jan 18 03:42:52 CET 2008
Author: andrew.kuchling
Date: Fri Jan 18 03:42:52 2008
New Revision: 60034
Modified:
python/trunk/Doc/library/sched.rst
Log:
Typo fix
Modified: python/trunk/Doc/library/sched.rst
==============================================================================
--- python/trunk/Doc/library/sched.rst (original)
+++ python/trunk/Doc/library/sched.rst Fri Jan 18 03:42:52 2008
@@ -43,7 +43,7 @@
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.
More information about the Python-checkins
mailing list