diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-29 01:41:08 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-03-29 01:41:08 (GMT) |
commit | 504a48f90ab957c1ebe8fc2c4f173f410f707f9e (patch) | |
tree | 766718817c4e67729141de7461c2e8ea06877f30 /Lib | |
parent | 4130930b4cb2e41b758d69e5bcd5be678391c85b (diff) | |
download | cpython-504a48f90ab957c1ebe8fc2c4f173f410f707f9e.zip cpython-504a48f90ab957c1ebe8fc2c4f173f410f707f9e.tar.gz cpython-504a48f90ab957c1ebe8fc2c4f173f410f707f9e.tar.bz2 |
Revert my experiment. I found one reason of failures in test_logging.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/threading.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/threading.py b/Lib/threading.py index f2d28f4..eebe10a 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -535,9 +535,7 @@ 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. - # XXX Temporary experiment - # self.__exc_clear() - pass + self.__exc_clear() finally: with _active_limbo_lock: self.__stop() |