diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 14:45:25 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-09-12 14:45:25 (GMT) |
commit | 0424eaf7533b0f386f6038dbb99f89e30fbbff76 (patch) | |
tree | 8319fe88ab1424714e8346aba8885075ed39b77a /Doc/library/pdb.rst | |
parent | 06171bd52a02173910d7ab8082850bbed0db1410 (diff) | |
download | cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.zip cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.gz cpython-0424eaf7533b0f386f6038dbb99f89e30fbbff76.tar.bz2 |
Marked keystrokes with the :kbd: role.
Fixed the case of the "Ctrl-" prefixes.
Diffstat (limited to 'Doc/library/pdb.rst')
-rw-r--r-- | Doc/library/pdb.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pdb.rst b/Doc/library/pdb.rst index 6e526f4..c144db6 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -156,8 +156,8 @@ access further features, you have to do this yourself: that matches one of these patterns. [1]_ By default, Pdb sets a handler for the SIGINT signal (which is sent when the - user presses Ctrl-C on the console) when you give a ``continue`` command. - This allows you to break into the debugger again by pressing Ctrl-C. If you + 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. Example call to enable tracing with *skip*:: |