[Python-checkins] python/dist/src/Misc NEWS, 1.831.4.133, 1.831.4.134

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Wed Jul 21 04:55:57 CEST 2004


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

Modified Files:
      Tag: release23-maint
	NEWS 
Log Message:
dummy_threading when run with -O would raise a KeyError in Thread.__delete()
when called by atexit thanks to dummy_thread always returning -1 for
dummy_thread.get_ident().  Since exception was not an issue, it is now caught
and tossed.

Closes bug #993394.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.831.4.133
retrieving revision 1.831.4.134
diff -C2 -d -r1.831.4.133 -r1.831.4.134
*** NEWS	12 Jul 2004 13:10:45 -0000	1.831.4.133
--- NEWS	21 Jul 2004 02:55:54 -0000	1.831.4.134
***************
*** 44,47 ****
--- 44,52 ----
  -------
  
+ - Bug #993394.  A KeyError was being raised by Thread.__delete() for
+   dummy_threading when called by atexit if an instance of Thread was created in
+   an interpreter running in -O.  The exception was of no importance and thus is
+   now thrown away if raised.
+ 
  - Bug #930024: posixpath.realpath() now detects loops from symlinks and returns
    the longest path before the loop begins.



More information about the Python-checkins mailing list