[Python-checkins] python/dist/src/Lib threading.py,1.34,1.35

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Sun, 29 Jun 2003 10:07:48 -0700


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

Modified Files:
	threading.py 
Log Message:
Remove stub settrace() and setprofile() calls.


Index: threading.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/threading.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** threading.py	29 Jun 2003 16:58:41 -0000	1.34
--- threading.py	29 Jun 2003 17:07:46 -0000	1.35
***************
*** 622,633 ****
      return active
  
- # XXX This needs a real defintion.
- def settrace(tracefunc):
-     pass
- 
- # XXX This needs a real defintion.
- def setprofile(dispatchfunc):
-     pass
- 
  # Create the main thread object
  
--- 622,625 ----