From 504a48f90ab957c1ebe8fc2c4f173f410f707f9e Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Sat, 29 Mar 2008 01:41:08 +0000 Subject: [PATCH] Revert my experiment. I found one reason of failures in test_logging. --- Lib/threading.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Lib/threading.py b/Lib/threading.py index f2d28f40b8f..eebe10a9c0f 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()