summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libsched.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-06-25 19:13:36 (GMT)
committerFred Drake <fdrake@acm.org>1999-06-25 19:13:36 (GMT)
commit14ae4b48fbe13d3335fd6d6203221e908da598a6 (patch)
treed8d7988ea2652ffd6fdf2fb15884d7da9333f6bb /Doc/lib/libsched.tex
parentc4e3bf9b5e362d3d7e618de279247c7d3186885c (diff)
downloadcpython-14ae4b48fbe13d3335fd6d6203221e908da598a6.zip
cpython-14ae4b48fbe13d3335fd6d6203221e908da598a6.tar.gz
cpython-14ae4b48fbe13d3335fd6d6203221e908da598a6.tar.bz2
Fix some typos.
Add an index entry.
Diffstat (limited to 'Doc/lib/libsched.tex')
-rw-r--r--Doc/lib/libsched.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/lib/libsched.tex b/Doc/lib/libsched.tex
index afa9c6f..baa2ffe 100644
--- a/Doc/lib/libsched.tex
+++ b/Doc/lib/libsched.tex
@@ -7,13 +7,13 @@
\modulesynopsis{General purpose event scheduler.}
The \module{sched} module defines a class which implements a general
-purpose event scheduler:
+purpose event scheduler:\index{event scheduling}
\begin{classdesc}{scheduler}{timefunc, delayfunc}
The \class{scheduler} class defines a generic interface to scheduling
events. It needs two functions to actually deal with the ``outside world''
--- \var{timefunc} should be callable without arguments, and return
-a number (the ``time'', in any units whatsoever). The \var{delayfunc}
+a number (the ``time'', in any units whatsoever). The \var{delayfunc}
function should be callable with one argument, compatible with the output
of \var{timefunc}, and should delay that many time units.
\var{delayfunc} will also be called with the argument \code{0} after
@@ -43,9 +43,9 @@ From print_time 930343700.273
\end{verbatim}
-\subsection{Schedule Objects \label{schedule-objects}}
+\subsection{Scheduler Objects \label{scheduler-objects}}
-\class{schdule} instances have the following methods:
+\class{scheduler} instances have the following methods:
\begin{methoddesc}{enterabs}{time, priority, action, argument}
Schedule a new event. The \var{time} argument should be a numeric type
@@ -74,7 +74,7 @@ currently in the queue, this method will raise a
\end{methoddesc}
\begin{methoddesc}{empty}{}
-Check whether there are no scheduled events.
+Return true if the event queue is empty.
\end{methoddesc}
\begin{methoddesc}{run}{}