(defgroup python nil
"Support for the Python programming language, <http://www.python.org/>"
- :group 'languages)
+ :group 'languages
+ :prefix "py-")
(defcustom py-python-command "python"
"*Shell command used to start Python interpreter."
(defcustom py-jpython-command "jpython"
"*Shell command used to start the JPython interpreter."
:type 'string
- :group 'python)
+ :group 'python
+ :tag "JPython Command")
(defcustom py-default-interpreter 'cpython
"*Which Python interpreter is used by default.
(defcustom py-jpython-command-args '("-i")
"*List of string arguments to be used when starting a JPython shell."
:type '(repeat string)
- :group 'python)
+ :group 'python
+ :tag "JPython Command Args")
(defcustom py-indent-offset 4
"*Amount of offset per level of indentation.