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

amaury.forgeotdarc python-checkins at python.org
Sat Mar 29 01:44:58 CET 2008


Author: amaury.forgeotdarc
Date: Sat Mar 29 01:44:58 2008
New Revision: 62023

Modified:
   python/trunk/Lib/threading.py
Log:
Try to understand why most buildbots suddenly turned to red.
Undo the only change that might have unexpected effects.

To be followed.


Modified: python/trunk/Lib/threading.py
==============================================================================
--- python/trunk/Lib/threading.py	(original)
+++ python/trunk/Lib/threading.py	Sat Mar 29 01:44:58 2008
@@ -535,7 +535,8 @@
                 # 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()


More information about the Python-checkins mailing list