Duncan Grisby noted a typo in _DummyThread.

This commit is contained in:
Guido van Rossum 1999-09-29 15:26:52 +00:00
parent b24afe19db
commit 8e7eaa8ac8
1 changed files with 1 additions and 1 deletions

View File

@ -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()