Kaydet (Commit) 8e7eaa8a authored tarafından Guido van Rossum's avatar Guido van Rossum

Duncan Grisby noted a typo in _DummyThread.

üst b24afe19
...@@ -506,7 +506,7 @@ class _DummyThread(Thread): ...@@ -506,7 +506,7 @@ class _DummyThread(Thread):
def __init__(self): def __init__(self):
Thread.__init__(self, name=_newname("Dummy-%d")) Thread.__init__(self, name=_newname("Dummy-%d"))
self.__Thread_started = 1 self._Thread__started = 1
_active_limbo_lock.acquire() _active_limbo_lock.acquire()
_active[_get_ident()] = self _active[_get_ident()] = self
_active_limbo_lock.release() _active_limbo_lock.release()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment