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)
This commit is contained in:
Wim Jeantine-Glenn 2024-08-07 10:01:44 -05:00 committed by GitHub
parent 61a8bf2853
commit c25898d51e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ Command line
When invoking Python, you may specify any of these options:: 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:: The most common use case is, of course, a simple invocation of a script::