From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 7 Aug 2024 15:11:12 +0000 (+0200) Subject: [3.12] Doc: cmdline.rst: Include -P and -R in usage (GH-122590) (#122784) X-Git-Tag: v3.12.6~88 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=88f8385741b4a460b6633980581f789e3969d984;p=thirdparty%2FPython%2Fcpython.git [3.12] Doc: cmdline.rst: Include -P and -R in usage (GH-122590) (#122784) Doc: cmdline.rst: Include -P and -R in usage (GH-122590) * ``-P``: safe path (https://docs.python.org/3/using/cmdline.htmlGH-cmdoption-P) * ``-R``: hash randomization (https://docs.python.org/3/using/cmdline.htmlGH-cmdoption-R) (cherry picked from commit c25898d51e4ec84319b7113d5bf453c6e6519d9c) Co-authored-by: Wim Jeantine-Glenn --- diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 9567c72d62bd..d1ca15d3740e 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::