summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/run.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-06-13 22:03:43 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2003-06-13 22:03:43 (GMT)
commit93e8e5492402d55e0c0c4b08ff213783f5891561 (patch)
tree9ddc2d28359821d777e311d62835180cf84a4e3e /Lib/idlelib/run.py
parenta11e84613579e2487bcb3967d3a2edbd0665343a (diff)
downloadcpython-93e8e5492402d55e0c0c4b08ff213783f5891561.zip
cpython-93e8e5492402d55e0c0c4b08ff213783f5891561.tar.gz
cpython-93e8e5492402d55e0c0c4b08ff213783f5891561.tar.bz2
Interrupt module has been folded into the thread module
Modified Files: run.py Removed Files: interruptmodule.c
Diffstat (limited to 'Lib/idlelib/run.py')
-rw-r--r--Lib/idlelib/run.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py
index 5e86e47..7ff8b55 100644
--- a/Lib/idlelib/run.py
+++ b/Lib/idlelib/run.py
@@ -3,6 +3,7 @@ import os
import time
import socket
import traceback
+import thread
import threading
import Queue
@@ -13,7 +14,6 @@ import RemoteDebugger
import RemoteObjectBrowser
import StackViewer
import rpc
-import interrupt
import __main__
@@ -189,7 +189,7 @@ class MyRPCServer(rpc.RPCServer):
except EOFError:
global exit_now
exit_now = True
- interrupt.interrupt_main()
+ thread.interrupt_main()
except:
erf = sys.__stderr__
print>>erf, '\n' + '-'*40
@@ -223,13 +223,13 @@ class MyHandler(rpc.RPCHandler):
"Override SocketIO method - terminate wait on callback and exit thread"
global quitting
quitting = True
- interrupt.interrupt_main()
+ thread.interrupt_main()
def decode_interrupthook(self):
"interrupt awakened thread"
global quitting
quitting = True
- interrupt.interrupt_main()
+ thread.interrupt_main()
class Executive:
@@ -256,7 +256,7 @@ class Executive:
flush_stdout()
def interrupt_the_server(self):
- interrupt.interrupt_main()
+ thread.interrupt_main()
def start_the_debugger(self, gui_adap_oid):
return RemoteDebugger.start_debugger(self.rpchandler, gui_adap_oid)