Comment out a debugging print statement that triggered a complaint in

c.l.py.
This commit is contained in:
Guido van Rossum 2000-12-15 20:08:39 +00:00
parent 065cba1281
commit 5080b33046
1 changed files with 1 additions and 1 deletions

View 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():