From: Neal Norwitz Date: Mon, 30 Jun 2003 21:47:47 +0000 (+0000) Subject: Add versionadded info for the 2 new threading module functions X-Git-Tag: v2.3c1~221 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ecc7171007e692b8444c084f6f32be550dddc628;p=thirdparty%2FPython%2Fcpython.git Add versionadded info for the 2 new threading module functions --- diff --git a/Doc/lib/libthreading.tex b/Doc/lib/libthreading.tex index d3a732290559..f6d7e4d90a38 100644 --- a/Doc/lib/libthreading.tex +++ b/Doc/lib/libthreading.tex @@ -95,6 +95,7 @@ Set a trace function\index{trace function} for all threads started from the \module{threading} module. The \var{func} will be passed to \function{sys.settrace()} for each thread, before its \method{run()} method is called. +\versionadded{2.3} \end{funcdesc} \begin{funcdesc}{setprofile}{func} @@ -102,6 +103,7 @@ Set a profile function\index{profile function} for all threads started from the \module{threading} module. The \var{func} will be passed to \function{sys.setprofile()} for each thread, before its \method{run()} method is called. +\versionadded{2.3} \end{funcdesc} Detailed interfaces for the objects are documented below.