From: Guido van Rossum Date: Wed, 29 Sep 1999 15:26:52 +0000 (+0000) Subject: Duncan Grisby noted a typo in _DummyThread. X-Git-Tag: v1.6a1~862 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e7eaa8ac8ded9099157ae9096e9f052a5c16ce6;p=thirdparty%2FPython%2Fcpython.git Duncan Grisby noted a typo in _DummyThread. --- diff --git a/Lib/threading.py b/Lib/threading.py index 767df4592872..8d5e8335a67a 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -506,7 +506,7 @@ class _DummyThread(Thread): def __init__(self): Thread.__init__(self, name=_newname("Dummy-%d")) - self.__Thread_started = 1 + self._Thread__started = 1 _active_limbo_lock.acquire() _active[_get_ident()] = self _active_limbo_lock.release()