From: Fred Drake Date: Sun, 29 Jun 2003 18:12:23 +0000 (+0000) Subject: Fix broken markup, & tweak a couple of things for consistency. X-Git-Tag: v2.3c1~236 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5728815e7b3c4538799c80b657d2e923db3c6968;p=python Fix broken markup, & tweak a couple of things for consistency. --- diff --git a/Doc/lib/libthreading.tex b/Doc/lib/libthreading.tex index ad48feb5ec..d3a7322905 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}