diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-11-24 21:30:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-24 21:30:27 (GMT) |
commit | 84c4b1938fade2b425ac906730beabd413de094d (patch) | |
tree | e174a049a39e00c97c28310c937b263812d19836 /Doc/using/cmdline.rst | |
parent | da9c8c36aeb60ad8f7748a735c372bf993d2e4f3 (diff) | |
download | cpython-84c4b1938fade2b425ac906730beabd413de094d.zip cpython-84c4b1938fade2b425ac906730beabd413de094d.tar.gz cpython-84c4b1938fade2b425ac906730beabd413de094d.tar.bz2 |
bpo-32124: Document C functions safe before init (#4540)
Explicitly document C functions and C variables that can be set
before Py_Initialize().
Diffstat (limited to 'Doc/using/cmdline.rst')
-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 fc557ee..d022e2c 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -212,7 +212,7 @@ Miscellaneous options .. cmdoption:: -d - Turn on parser debugging output (for wizards only, depending on compilation + Turn on parser debugging output (for expert only, depending on compilation options). See also :envvar:`PYTHONDEBUG`. |