diff options
author | Wim Jeantine-Glenn <hey@wimglenn.com> | 2024-08-07 15:01:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-07 15:01:44 (GMT) |
commit | c25898d51e4ec84319b7113d5bf453c6e6519d9c (patch) | |
tree | 5eadbb6f011c70a3dc8cfe1cefcddd91942c8cbe /Doc | |
parent | 61a8bf28530558da239834785a0b590ae8900a16 (diff) | |
download | cpython-c25898d51e4ec84319b7113d5bf453c6e6519d9c.zip cpython-c25898d51e4ec84319b7113d5bf453c6e6519d9c.tar.gz cpython-c25898d51e4ec84319b7113d5bf453c6e6519d9c.tar.bz2 |
Doc: cmdline.rst: Include -P and -R in usage (#122590)
* ``-P``: safe path (https://docs.python.org/3/using/cmdline.html#cmdoption-P)
* ``-R``: hash randomization (https://docs.python.org/3/using/cmdline.html#cmdoption-R)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/cmdline.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index c175c4f..aa1edeb 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -24,7 +24,7 @@ Command line When invoking Python, you may specify any of these options:: - python [-bBdEhiIOqsSuvVWx?] [-c command | -m module-name | script | - ] [args] + python [-bBdEhiIOPqRsSuvVWx?] [-c command | -m module-name | script | - ] [args] The most common use case is, of course, a simple invocation of a script:: |