summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/RemoteDebugger.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-05-12 02:33:47 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2003-05-12 02:33:47 (GMT)
commit9ec454ec00088e051195e80363499a14cafc131a (patch)
tree2bb4d5c15dda1bd85e201951a8777136fc49841d /Lib/idlelib/RemoteDebugger.py
parent8f51526837b7edae4a4424657f0105b35e1c4648 (diff)
downloadcpython-9ec454ec00088e051195e80363499a14cafc131a.zip
cpython-9ec454ec00088e051195e80363499a14cafc131a.tar.gz
cpython-9ec454ec00088e051195e80363499a14cafc131a.tar.bz2
1. RemoteDebugger now runs user code in subprocess MainThread
2. run.py: move exception printing to toplevel to allow access from main() 3. Clarification in PyShell.py: when the subprocess is restarted, the debugger GUI is reused with a fresh instance of the subprocess debugger. M PyShell.py M RemoteDebugger.py M run.py
Diffstat (limited to 'Lib/idlelib/RemoteDebugger.py')
-rw-r--r--Lib/idlelib/RemoteDebugger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/RemoteDebugger.py b/Lib/idlelib/RemoteDebugger.py
index 41f910f..bdcef51 100644
--- a/Lib/idlelib/RemoteDebugger.py
+++ b/Lib/idlelib/RemoteDebugger.py
@@ -300,7 +300,7 @@ class IdbProxy:
def run(self, cmd, locals):
# Ignores locals on purpose!
- seq = self.conn.asynccall(self.oid, "run", (cmd,), {})
+ seq = self.conn.asyncqueue(self.oid, "run", (cmd,), {})
self.shell.interp.active_seq = seq
def get_stack(self, frame, tbid):