diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-06-16 03:32:24 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-06-16 03:32:24 (GMT) |
commit | 0e3a57731b4b1ffbfae151cf23289bbd51148163 (patch) | |
tree | 5e80bf8895acc85720df9fd8aa99671a96587a80 /Lib/idlelib/run.py | |
parent | 04443027107e1d53efaf7a41546f65af45748fd7 (diff) | |
download | cpython-0e3a57731b4b1ffbfae151cf23289bbd51148163.zip cpython-0e3a57731b4b1ffbfae151cf23289bbd51148163.tar.gz cpython-0e3a57731b4b1ffbfae151cf23289bbd51148163.tar.bz2 |
Polish RemoteDebugger code.
Use a repr() on the subprocess side when fetching dict values for stack.
The various dict entities are not needed by the debugger GUI, only
their representation.
Diffstat (limited to 'Lib/idlelib/run.py')
-rw-r--r-- | Lib/idlelib/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index 1b84d4d..cfb318c 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -30,9 +30,9 @@ class Executive: def runcode(self, code): exec code in self.locals - def start_debugger(self, gui_oid): + def start_the_debugger(self, gui_adap_oid): import RemoteDebugger - return RemoteDebugger.start_debugger(self.conn, gui_oid) + return RemoteDebugger.start_debugger(self.conn, gui_adap_oid) def stackviewer(self, flist_oid=None): if not hasattr(sys, "last_traceback"): |