diff options
author | Julien Palard <julien@palard.fr> | 2018-07-06 09:15:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-06 09:15:13 (GMT) |
commit | 7943c5e8b525694b837d097d0fcce5097efc5626 (patch) | |
tree | 7b2af84564bc3b9a01b7030168b01de605c4ce91 /Doc | |
parent | d8c3e820b4fcdc45b80ba47f615c95e99e2e931b (diff) | |
download | cpython-7943c5e8b525694b837d097d0fcce5097efc5626.zip cpython-7943c5e8b525694b837d097d0fcce5097efc5626.tar.gz cpython-7943c5e8b525694b837d097d0fcce5097efc5626.tar.bz2 |
Doc: Remove superfluous markup. (GH-8112)
The line is speaking of a list of commands, not the list command.
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 c6720cb..a72876f 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -344,7 +344,7 @@ by the local file. Specifying any command resuming execution (currently :pdbcmd:`continue`, :pdbcmd:`step`, :pdbcmd:`next`, :pdbcmd:`return`, :pdbcmd:`jump`, :pdbcmd:`quit` and their abbreviations) - terminates the command :pdbcmd:`list` (as if + terminates the command list (as if that command was immediately followed by end). This is because any time you resume execution (even with a simple next or step), you may encounter another breakpoint—which could have its own command list, leading to ambiguities about |