[Python-checkins] CVS: python/dist/src/Lib threading.py,1.19.12.1,1.19.12.2

Neal Norwitz nnorwitz@users.sourceforge.net
Mon, 18 Feb 2002 19:02:35 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv26469

Modified Files:
      Tag: release22-maint
	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.19.12.1
retrieving revision 1.19.12.2
diff -C2 -d -r1.19.12.1 -r1.19.12.2
*** threading.py	4 Jan 2002 12:29:45 -0000	1.19.12.1
--- threading.py	19 Feb 2002 03:02:33 -0000	1.19.12.2
***************
*** 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"