summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-10-20 20:27:32 (GMT)
committerNed Deily <nad@acm.org>2012-10-20 20:27:32 (GMT)
commitd2cc1bb057ed113b4205fedc4f6a7837ee0f24fd (patch)
tree548866e64ece3a5bf0a303ce27cd1c7ecb7ba223 /Doc
parent76e7ea5b4c92cee78e2c3027861de65718bb0338 (diff)
parent2778d0d1477f854d7443075a21369fde2032d43c (diff)
downloadcpython-d2cc1bb057ed113b4205fedc4f6a7837ee0f24fd.zip
cpython-d2cc1bb057ed113b4205fedc4f6a7837ee0f24fd.tar.gz
cpython-d2cc1bb057ed113b4205fedc4f6a7837ee0f24fd.tar.bz2
Issue #10405: merge from 3.2
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/idle.rst49
1 files changed, 39 insertions, 10 deletions
diff --git a/Doc/library/idle.rst b/Doc/library/idle.rst
index 6bd1898..5f28a99 100644
--- a/Doc/library/idle.rst
+++ b/Doc/library/idle.rst
@@ -154,27 +154,56 @@ The rest of this menu lists the names of all open windows; select one to bring
it to the foreground (deiconifying it if necessary).
-Debug menu (in the Python Shell window only)
-^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+Debug menu
+^^^^^^^^^^
+
+* in the Python Shell window only
Go to file/line
- look around the insert point for a filename and linenumber, open the file, and
- show the line.
+ Look around the insert point for a filename and line number, open the file,
+ and show the line. Useful to view the source lines referenced in an
+ exception traceback.
-Open stack viewer
- show the stack traceback of the last exception
+Debugger
+ Run commands in the shell under the debugger.
-Debugger toggle
- Run commands in the shell under the debugger
+Stack viewer
+ Show the stack traceback of the last exception.
-JIT Stack viewer toggle
- Open stack viewer on traceback
+Auto-open Stack Viewer
+ Open stack viewer on traceback.
.. index::
single: stack viewer
single: debugger
+Edit context menu
+^^^^^^^^^^^^^^^^^
+
+* Right-click in Edit window (Control-click on OS X)
+
+Set Breakpoint
+ Sets a breakpoint. Breakpoints are only enabled when the debugger is open.
+
+Clear Breakpoint
+ Clears the breakpoint on that line.
+
+.. index::
+ single: Set Breakpoint
+ single: Clear Breakpoint
+ single: breakpoints
+
+
+Shell context menu
+^^^^^^^^^^^^^^^^^^
+
+* Right-click in Python Shell window (Control-click on OS X)
+
+Go to file/line
+ Same as in Debug menu.
+
+
Basic editing and navigation
----------------------------