[Python-checkins] python/dist/src/Misc NEWS,1.780,1.781

bcannon@users.sourceforge.net bcannon@users.sourceforge.net
Fri, 13 Jun 2003 16:44:38 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv14872/Misc

Modified Files:
	NEWS 
Log Message:
dummy_thread modified to have interrupt_main and to behave appropriately when
called.

Added announcement in Misc/NEWS for thread.interrupt_main and mention of
dummy_thread's change.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.780
retrieving revision 1.781
diff -C2 -d -r1.780 -r1.781
*** NEWS	13 Jun 2003 20:37:23 -0000	1.780
--- NEWS	13 Jun 2003 23:44:35 -0000	1.781
***************
*** 56,59 ****
--- 56,62 ----
  -----------------
  
+ - thread.interrupt_main() raises KeyboardInterrupt in the main thread.
+   dummy_thread has also been modified to try to simulate the behavior.
+ 
  - array.array.insert() now treats negative indices as being relative
    to the end of the array, just like list.insert() does. (SF bug #739313)