summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-29 00:44:58 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-03-29 00:44:58 (GMT)
commit8a69707b8087ea693a699176db083a13dbb52e69 (patch)
treef13ca0d2abad1fcce22b59991586ae1989e914bb
parenta45ab9f37d23eb9c65f95cf64ff0e2e9c10dad21 (diff)
downloadcpython-8a69707b8087ea693a699176db083a13dbb52e69.zip
cpython-8a69707b8087ea693a699176db083a13dbb52e69.tar.gz
cpython-8a69707b8087ea693a699176db083a13dbb52e69.tar.bz2
Try to understand why most buildbots suddenly turned to red.
Undo the only change that might have unexpected effects. To be followed.
-rw-r--r--Lib/threading.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/threading.py b/Lib/threading.py
index eebe10a..b7b7023 100644
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -535,7 +535,8 @@ class Thread(_Verbose):
# test_threading.test_no_refcycle_through_target when
# the exception keeps the target alive past when we
# assert that it's dead.
- self.__exc_clear()
+ # XXX Temporary experiment
+ # self.__exc_clear()
finally:
with _active_limbo_lock:
self.__stop()