[Python-checkins] python/dist/src/Misc NEWS, 1.831.4.127, 1.831.4.128

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Jul 3 15:59:00 EDT 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6118/Misc

Modified Files:
      Tag: release23-maint
	NEWS 
Log Message:
threading.Thread used to raise an exception about attempting to execute a
NoneType if an exception in a thread was raised during interpreter shutdown.
This led to a masking of the initial exception (not good).  All fixed (good).

Closes bug #754449 (using both patch #954922 and a backport of rev. 1.41 from
HEAD).


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.831.4.127
retrieving revision 1.831.4.128
diff -C2 -d -r1.831.4.127 -r1.831.4.128
*** NEWS	2 Jul 2004 08:40:28 -0000	1.831.4.127
--- NEWS	3 Jul 2004 19:58:58 -0000	1.831.4.128
***************
*** 41,44 ****
--- 41,49 ----
  -------
  
+ - Bug #754449: threading.Thread will no longer mask exceptions raised during
+   interpreter shutdown with another exception caused by attempting to output
+   the initial exception.  This fix also includes a backport of rev. 1.41 from
+   HEAD.
+ 
  - Bug #982215: The Back and Next buttons in bdist_wininst installers are now
    disabled during file copy operations.




More information about the Python-checkins mailing list