[Python-checkins] python/dist/src/Lib/idlelib run.py,1.22,1.23 interruptmodule.c,1.1,NONE

kbk@users.sourceforge.net kbk@users.sourceforge.net
Fri, 13 Jun 2003 15:03:45 -0700


Update of /cvsroot/python/python/dist/src/Lib/idlelib
In directory sc8-pr-cvs1:/tmp/cvs-serv32053

Modified Files:
	run.py 
Removed Files:
	interruptmodule.c 
Log Message:
Interrupt module has been folded into the thread module
 Modified Files:
 	run.py 
 Removed Files:
 	interruptmodule.c 


Index: run.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/idlelib/run.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** run.py	5 Jun 2003 23:51:29 -0000	1.22
--- run.py	13 Jun 2003 22:03:43 -0000	1.23
***************
*** 4,7 ****
--- 4,8 ----
  import socket
  import traceback
+ import thread
  import threading
  import Queue
***************
*** 14,18 ****
  import StackViewer
  import rpc
- import interrupt
  
  import __main__
--- 15,18 ----
***************
*** 190,194 ****
              global exit_now
              exit_now = True
!             interrupt.interrupt_main()
          except:
              erf = sys.__stderr__
--- 190,194 ----
              global exit_now
              exit_now = True
!             thread.interrupt_main()
          except:
              erf = sys.__stderr__
***************
*** 224,228 ****
          global quitting
          quitting = True
!         interrupt.interrupt_main()
  
      def decode_interrupthook(self):
--- 224,228 ----
          global quitting
          quitting = True
!         thread.interrupt_main()
  
      def decode_interrupthook(self):
***************
*** 230,234 ****
          global quitting
          quitting = True
!         interrupt.interrupt_main()
  
  
--- 230,234 ----
          global quitting
          quitting = True
!         thread.interrupt_main()
  
  
***************
*** 257,261 ****
  
      def interrupt_the_server(self):
!         interrupt.interrupt_main()
  
      def start_the_debugger(self, gui_adap_oid):
--- 257,261 ----
  
      def interrupt_the_server(self):
!         thread.interrupt_main()
  
      def start_the_debugger(self, gui_adap_oid):

--- interruptmodule.c DELETED ---