[Python-checkins] CVS: python/dist/src/Lib threading.py,1.20,1.21
Neal Norwitz
nnorwitz@users.sourceforge.net
2002年2月18日 19:01:38 -0800
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv26006
Modified Files:
threading.py
Log Message:
SF #515023. Make _DummyThread.join() signature match base class (Thread)
Index: threading.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/threading.py,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** threading.py 28 Dec 2001 22:07:09 -0000 1.20
--- threading.py 19 Feb 2002 03:01:36 -0000 1.21
***************
*** 573,577 ****
return 1
! def join(self):
assert 0, "cannot join a dummy thread"
--- 573,577 ----
return 1
! def join(self, timeout=None):
assert 0, "cannot join a dummy thread"