summaryrefslogtreecommitdiff
path: root/Lib/idlelib/RemoteDebugger.py
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-05-12 02:33:47 +0000
committerKurt B. Kaiser <kbk@shore.net>2003-05-12 02:33:47 +0000
commit9ec454ec00088e051195e80363499a14cafc131a (patch)
tree2bb4d5c15dda1bd85e201951a8777136fc49841d /Lib/idlelib/RemoteDebugger.py
parent8f51526837b7edae4a4424657f0105b35e1c4648 (diff)
downloadcpython-git-9ec454ec00088e051195e80363499a14cafc131a.tar.gz
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 41f910f45b..bdcef51c04 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):