diff options
author | Tian Gao <gaogaotiantian@hotmail.com> | 2023-11-04 23:05:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-04 23:05:22 (GMT) |
commit | 853b4b549dab445c1b54610e118fefaeba3f35e2 (patch) | |
tree | 38114546fdd27aff65caf238072ed4da20d61957 /Doc | |
parent | a6c1c04d4d2339f0094422974ae3f26f8c7c8565 (diff) | |
download | cpython-853b4b549dab445c1b54610e118fefaeba3f35e2.zip cpython-853b4b549dab445c1b54610e118fefaeba3f35e2.tar.gz cpython-853b4b549dab445c1b54610e118fefaeba3f35e2.tar.bz2 |
gh-111719: Add extra check for alias command (#111720)
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 002eeef..bbc6aac 100644 --- a/Doc/library/pdb.rst +++ b/Doc/library/pdb.rst @@ -580,7 +580,7 @@ can be overridden by the local file. Create an alias called *name* that executes *command*. The *command* must *not* be enclosed in quotes. Replaceable parameters can be indicated by - ``%1``, ``%2``, and so on, while ``%*`` is replaced by all the parameters. + ``%1``, ``%2``, ... and ``%9``, while ``%*`` is replaced by all the parameters. If *command* is omitted, the current alias for *name* is shown. If no arguments are given, all aliases are listed. |