diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-24 21:53:16 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2016-08-24 21:53:16 (GMT) |
commit | c532b3c1cebdbdb2aac8dc3d2be3904d754aee9c (patch) | |
tree | e9bf0c6eda38966a90c2434a0375019b2905f72c /Doc | |
parent | 12f611a47aadf0dc74f3a2c50a610b6cc2c668dc (diff) | |
parent | de260a6fa8c52a1773906d295e915967af180461 (diff) | |
download | cpython-c532b3c1cebdbdb2aac8dc3d2be3904d754aee9c.zip cpython-c532b3c1cebdbdb2aac8dc3d2be3904d754aee9c.tar.gz cpython-c532b3c1cebdbdb2aac8dc3d2be3904d754aee9c.tar.bz2 |
Merge with 3.5
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/pdb.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 471d1ea..d77de2e 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -158,7 +158,7 @@ access further features, you have to do this yourself: By default, Pdb sets a handler for the SIGINT signal (which is sent when the user presses :kbd:`Ctrl-C` on the console) when you give a ``continue`` command. This allows you to break into the debugger again by pressing :kbd:`Ctrl-C`. If you - want Pdb not to touch the SIGINT handler, set *nosigint* tot true. + want Pdb not to touch the SIGINT handler, set *nosigint* to true. Example call to enable tracing with *skip*:: |