diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-05-10 00:09:52 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-05-10 00:09:52 (GMT) |
commit | 57bfe5dc5a4873026679fb911939beb69e35a9e8 (patch) | |
tree | 80f4879e6a224a7f8ae5994fd2a08694faa63b0a /Lib/idlelib/PyShell.py | |
parent | 9f545c489ad7831305e9f477fe48e59ae60a5c83 (diff) | |
download | cpython-57bfe5dc5a4873026679fb911939beb69e35a9e8.zip cpython-57bfe5dc5a4873026679fb911939beb69e35a9e8.tar.gz cpython-57bfe5dc5a4873026679fb911939beb69e35a9e8.tar.bz2 |
1. Update debugger to not trace RPC code even when calling Queue and
threading modules. Can debug user code which imports these modules,
though.
2. Re-enable debugger in PyShell.
3. Remove old code implementing previous approaches to this issue.
M Debugger.py
M PyShell.py
M rpc.py
Diffstat (limited to 'Lib/idlelib/PyShell.py')
-rw-r--r-- | Lib/idlelib/PyShell.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/PyShell.py b/Lib/idlelib/PyShell.py index 483a921..ba898b2 100644 --- a/Lib/idlelib/PyShell.py +++ b/Lib/idlelib/PyShell.py @@ -690,7 +690,7 @@ class PyShell(OutputWindow): text.bind("<<beginning-of-line>>", self.home_callback) text.bind("<<end-of-file>>", self.eof_callback) text.bind("<<open-stack-viewer>>", self.open_stack_viewer) - ##text.bind("<<toggle-debugger>>", self.toggle_debugger) + text.bind("<<toggle-debugger>>", self.toggle_debugger) text.bind("<<open-python-shell>>", self.flist.open_shell) text.bind("<<toggle-jit-stack-viewer>>", self.toggle_jit_stack_viewer) text.bind("<<view-restart>>", self.view_restart_mark) |