Variable: org-babel-python-mode
org-babel-python-mode is a customizable variable defined in
ob-python.el.gz.
Value
python
Documentation
Preferred python mode for use in running python interactively.
This will typically be either python or python-mode.
This variable was added, or its default value changed, in Org version
8.0.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ob-python.el.gz
(defcustom org-babel-python-mode
(if (featurep 'python-mode) 'python-mode 'python)
"Preferred python mode for use in running python interactively.
This will typically be either `python' or `python-mode'."
:group 'org-babel
:version "24.4"
:package-version '(Org . "8.0")
:type 'symbol)