diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2003-06-30 21:47:47 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2003-06-30 21:47:47 (GMT) |
commit | ecc7171007e692b8444c084f6f32be550dddc628 (patch) | |
tree | b944faf7cdbbd8ec9e568cbab90736d558f32eb4 | |
parent | 675580f4fc84471aab3cea644c1298c79d509298 (diff) | |
download | cpython-ecc7171007e692b8444c084f6f32be550dddc628.zip cpython-ecc7171007e692b8444c084f6f32be550dddc628.tar.gz cpython-ecc7171007e692b8444c084f6f32be550dddc628.tar.bz2 |
Add versionadded info for the 2 new threading module functions
-rw-r--r-- | Doc/lib/libthreading.tex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/libthreading.tex b/Doc/lib/libthreading.tex index d3a7322..f6d7e4d 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. |