]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Doc: cmdline.rst: Include -P and -R in usage (#122590)
authorWim Jeantine-Glenn <hey@wimglenn.com>
Wed, 7 Aug 2024 15:01:44 +0000 (10:01 -0500)
committerGitHub <noreply@github.com>
Wed, 7 Aug 2024 15:01:44 +0000 (16:01 +0100)
* ``-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)

Doc/using/cmdline.rst

index c175c4f8b5b1eba6e242ad58663425091161bb74..aa1edeb884e0dff9e17fc5142c3030cd87d93c04 100644 (file)
@@ -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::