Variable: python-shell-process-environment
python-shell-process-environment is a customizable variable defined in
python.el.gz.
Value
nil
Documentation
List of overridden environment variables for subprocesses to inherit.
Each element should be a string of the form ENVVARNAME=VALUE. When this variable is non-nil, values are exported into the process environment before starting it. Any variables already present in the current environment are superseded by variables set here.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defcustom python-shell-process-environment nil
"List of overridden environment variables for subprocesses to inherit.
Each element should be a string of the form ENVVARNAME=VALUE.
When this variable is non-nil, values are exported into the
process environment before starting it. Any variables already
present in the current environment are superseded by variables
set here."
:type '(repeat string)
:group 'python)