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
This commit is contained in:
Kurt B. Kaiser 2003-05-10 00:09:52 +00:00
parent 9f545c489a
commit 57bfe5dc5a
3 changed files with 17 additions and 33 deletions

View file

@ -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)