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

Guido van Rossum python-dev@python.org
Fri, 15 Dec 2000 12:08:43 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5943

Modified Files:
	threading.py 
Log Message:
Comment out a debugging print statement that triggered a complaint in
c.l.py.


Index: threading.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/threading.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -r1.9 -r1.10
*** threading.py	2000/08/18 15:50:54	1.9
--- threading.py	2000/12/15 20:08:39	1.10
***************
*** 518,522 ****
          return _active[_get_ident()]
      except KeyError:
!         print "currentThread(): no current thread for", _get_ident()
          return _DummyThread()
  
--- 518,522 ----
          return _active[_get_ident()]
      except KeyError:
!         ##print "currentThread(): no current thread for", _get_ident()
          return _DummyThread()