diff options
author | 2013-09-09 18:48:24 -0500 | |
---|---|---|
committer | 2013-09-09 18:48:24 -0500 | |
commit | 72460fa68ba98f5aa94cdc842070884403c0fc73 (patch) | |
tree | c35fa089da52dce5cb1f10c373ce19b9b90e76c8 /Lib/threading.py | |
parent | Another stab at the thread cleanup patch. (diff) | |
download | cpython-72460fa68ba98f5aa94cdc842070884403c0fc73.tar.gz cpython-72460fa68ba98f5aa94cdc842070884403c0fc73.tar.bz2 cpython-72460fa68ba98f5aa94cdc842070884403c0fc73.zip |
Get "stopped" back into repr(Thread) when appropriate.
Due to recent changes, a Thread doesn't know that it's over before
someone calls .join() or .is_alive(). That meant repr(Thread)
continued to include "started" (and not "stopped") before one of
those methods was called, even if hours passed since the thread
ended.
Repaired that.
Diffstat (limited to 'Lib/threading.py')
-rw-r--r-- | Lib/threading.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index 1ad22a430c8..26d1018d3ed 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -574,6 +574,7 @@ class Thread: status = "initial" if self._started.is_set(): status = "started" + self.is_alive() # easy way to get ._is_stopped set when appropriate if self._is_stopped: status = "stopped" if self._daemonic: |