]> granicus.if.org Git - python/commitdiff
Comment out a debugging print statement that triggered a complaint in
authorGuido van Rossum <guido@python.org>
Fri, 15 Dec 2000 20:08:39 +0000 (20:08 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 15 Dec 2000 20:08:39 +0000 (20:08 +0000)
c.l.py.

Lib/threading.py

index 4921f0e5c7bf0fc4de25224de7b2199410b3ed91..fbc1f5c49432bbd79bcb6d75d2a4439577dc5a94 100644 (file)
@@ -517,7 +517,7 @@ def currentThread():
     try:
         return _active[_get_ident()]
     except KeyError:
-        print "currentThread(): no current thread for", _get_ident()
+        ##print "currentThread(): no current thread for", _get_ident()
         return _DummyThread()
 
 def activeCount():