* lisp/ob-python.el: Declare non-standard header args

(org-babel-default-header-args:python): New constant declaring
python-specific header arguments.
This commit is contained in:
Ihor Radchenko 2023-09-17 12:39:40 +03:00
parent c703541ffc
commit 88f2dde0fc
No known key found for this signature in database
GPG Key ID: 6470762A7DA11D8B
1 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,11 @@
(defvar org-babel-default-header-args:python '())
(defconst org-babel-default-header-args:python
'((return . :any)
(python . :any))
"Python-specific header arguments.")
(defcustom org-babel-python-command "python"
"Name of the command for executing Python code."
:version "24.4"