summaryrefslogtreecommitdiffstats
path: root/Lib/threading.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-09-29 15:26:52 (GMT)
committerGuido van Rossum <guido@python.org>1999-09-29 15:26:52 (GMT)
commit8e7eaa8ac8ded9099157ae9096e9f052a5c16ce6 (patch)
tree49873407438964b834b8222389c4c4c7eeb43514 /Lib/threading.py
parentb24afe19db084aaed63cb5bb0e1954060aa65df1 (diff)
downloadcpython-8e7eaa8ac8ded9099157ae9096e9f052a5c16ce6.zip
cpython-8e7eaa8ac8ded9099157ae9096e9f052a5c16ce6.tar.gz
cpython-8e7eaa8ac8ded9099157ae9096e9f052a5c16ce6.tar.bz2
Duncan Grisby noted a typo in _DummyThread.
Diffstat (limited to 'Lib/threading.py')
-rw-r--r--Lib/threading.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index 767df45..8d5e833 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()