diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2002-06-16 03:32:24 +0000 |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2002-06-16 03:32:24 +0000 |
commit | 0e3a57731b4b1ffbfae151cf23289bbd51148163 (patch) | |
tree | 5e80bf8895acc85720df9fd8aa99671a96587a80 /Lib/idlelib/PyShell.py | |
parent | 04443027107e1d53efaf7a41546f65af45748fd7 (diff) | |
download | cpython-git-0e3a57731b4b1ffbfae151cf23289bbd51148163.tar.gz |
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/PyShell.py')
-rw-r--r-- | Lib/idlelib/PyShell.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index d335c7e515..d84e2e1bd6 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -529,6 +529,9 @@ class PyShell(OutputWindow): self.set_debugger_indicator() def open_debugger(self): + # XXX KBK 13Jun02 An RPC client always exists now? Open remote + # debugger and return...dike the rest of this fcn and combine + # with open_remote_debugger? if self.interp.rpcclt: return self.open_remote_debugger() import Debugger |