[Python-checkins] python/dist/src/Doc/lib libthreading.tex, 1.21, 1.22

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Sun Jul 17 23:00:28 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22244/Doc/lib

Modified Files:
	libthreading.tex 
Log Message:
[ 912943 ] 7.5.6 Thread Objects is too vague



Index: libthreading.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libthreading.tex,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- libthreading.tex	2 Jun 2005 16:59:18 -0000	1.21
+++ libthreading.tex	17 Jul 2005 21:00:26 -0000	1.22
@@ -594,7 +594,12 @@
 
 When the \var{timeout} argument is present and not \code{None}, it
 should be a floating point number specifying a timeout for the
-operation in seconds (or fractions thereof).
+operation in seconds (or fractions thereof). As \method{join()} always 
+returns \code{None}, you must call \method{isAlive()} to decide whether 
+a timeout happened.
+
+When the \var{timeout} argument is not present or \code{None}, the
+operation will block until the thread terminates.
 
 A thread can be \method{join()}ed many times.
 



More information about the Python-checkins mailing list