diff options
author | Fred Drake <fdrake@acm.org> | 2003-06-29 18:12:23 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2003-06-29 18:12:23 (GMT) |
commit | 5728815e7b3c4538799c80b657d2e923db3c6968 (patch) | |
tree | f73bb957b13dab092f93377b4c09011d711cc9dc /Doc/lib/libthreading.tex | |
parent | b67695238d3ce6c40dacb05b155f24716af0c982 (diff) | |
download | cpython-5728815e7b3c4538799c80b657d2e923db3c6968.zip cpython-5728815e7b3c4538799c80b657d2e923db3c6968.tar.gz cpython-5728815e7b3c4538799c80b657d2e923db3c6968.tar.bz2 |
Fix broken markup, & tweak a couple of things for consistency.
Diffstat (limited to 'Doc/lib/libthreading.tex')
-rw-r--r-- | Doc/lib/libthreading.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libthreading.tex b/Doc/lib/libthreading.tex index ad48feb..d3a7322 100644 --- a/Doc/lib/libthreading.tex +++ b/Doc/lib/libthreading.tex @@ -91,16 +91,16 @@ A thread that executes a function after a specified interval has passed. \end{classdesc*} \begin{funcdesc}{settrace}{func} -Set a trace function \index{trace function} for all threads started +Set a trace function\index{trace function} for all threads started from the \module{threading} module. The \var{func} will be passed to -\cfuntion{sys.settrace} for each thread, before its \method{run} +\function{sys.settrace()} for each thread, before its \method{run()} method is called. \end{funcdesc} \begin{funcdesc}{setprofile}{func} -Set a profile function \index{profile function} for all threads started +Set a profile function\index{profile function} for all threads started from the \module{threading} module. The \var{func} will be passed to -\cfuntion{sys.setprofile} for each thread, before its \method{run} +\function{sys.setprofile()} for each thread, before its \method{run()} method is called. \end{funcdesc} |