[Python-checkins] r62028 - python/trunk/Lib/threading.py

amaury.forgeotdarc python-checkins at python.org
Sat Mar 29 02:41:09 CET 2008


Author: amaury.forgeotdarc
Date: Sat Mar 29 02:41:08 2008
New Revision: 62028

Modified:
   python/trunk/Lib/threading.py
Log:
Revert my experiment. I found one reason of failures in test_logging.


Modified: python/trunk/Lib/threading.py
==============================================================================
--- python/trunk/Lib/threading.py	(original)
+++ python/trunk/Lib/threading.py	Sat Mar 29 02:41:08 2008
@@ -535,9 +535,7 @@
                 # 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()


More information about the Python-checkins mailing list