summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-12-15 20:08:39 (GMT)
committerGuido van Rossum <guido@python.org>2000-12-15 20:08:39 (GMT)
commit5080b3304675019c0e215c6398301ec6c4f9fd88 (patch)
tree6c4c219e83a08cdf49ddd47ccb097eca7f6a8999 /Lib
parent065cba1281384de5ba18a2ed37d6761b8c788499 (diff)
downloadcpython-5080b3304675019c0e215c6398301ec6c4f9fd88.zip
cpython-5080b3304675019c0e215c6398301ec6c4f9fd88.tar.gz
cpython-5080b3304675019c0e215c6398301ec6c4f9fd88.tar.bz2
Comment out a debugging print statement that triggered a complaint in
c.l.py.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/threading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index 4921f0e..fbc1f5c 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -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():