From 9ec454ec00088e051195e80363499a14cafc131a Mon Sep 17 00:00:00 2001 From: "Kurt B. Kaiser" Date: Mon, 12 May 2003 02:33:47 +0000 Subject: 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 --- Lib/idlelib/RemoteDebugger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/idlelib/RemoteDebugger.py') 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): -- cgit v1.2.1