From: Wim Jeantine-Glenn Date: Wed, 7 Aug 2024 15:01:44 +0000 (-0500) Subject: Doc: cmdline.rst: Include -P and -R in usage (#122590) X-Git-Tag: v3.14.0a1~852 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c25898d51e4ec84319b7113d5bf453c6e6519d9c;p=thirdparty%2FPython%2Fcpython.git 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) --- diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index c175c4f8b5b1..aa1edeb884e0 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::