Closed
Description
Documentation
While looking for ways to control the new REPL, I found that PYTHON_BASIC_REPL
influences it, but is not present in the output of --help-env
.
Here's a list of environment variables that are present in the documentation but missing from --help-env
in initconfig.c
:
PYTHONASYNCIODEBUG
PYTHONDUMPREFS
PYTHONDUMPREFSFILE
PYTHONEXECUTABLE
PYTHONLEGACYWINDOWSFSENCODING
PYTHONLEGACYWINDOWSSTDIO
PYTHONMALLOCSTATS
PYTHONUSERBASE
PYTHON_BASIC_REPL
PYTHON_PERF_JIT_SUPPORT
The environment variable PYTHONSTATS
is present in initconfig.c
but missing from the docs.
Here's the part of initconfig.c
with the content of --help-env
:
Lines 234 to 301 in d25954d
I did a search to figure out if these are intentionally missing, but wasn't able to find out.