From: Guido van Rossum Date: Fri, 15 Dec 2000 20:08:39 +0000 (+0000) Subject: Comment out a debugging print statement that triggered a complaint in X-Git-Tag: v2.1a1~559 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5080b3304675019c0e215c6398301ec6c4f9fd88;p=python Comment out a debugging print statement that triggered a complaint in c.l.py. --- diff --git a/Lib/threading.py b/Lib/threading.py index 4921f0e5c7..fbc1f5c494 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():