python-shell-interpreter doc string clarification
* lisp/progmodes/python.el (python-shell-interpreter): Note what to do when using ipython3 (bug#44732).
This commit is contained in:
parent
cc5b6cb6bc
commit
9c1bbad907
1 changed files with 6 additions and 1 deletions
|
@ -2022,7 +2022,12 @@ position, else returns nil."
|
|||
(cond ((executable-find "python3") "python3")
|
||||
((executable-find "python") "python")
|
||||
(t "python3"))
|
||||
"Default Python interpreter for shell."
|
||||
"Default Python interpreter for shell.
|
||||
|
||||
Some Python interpreters also require changes to
|
||||
`python-shell-interpreter-args'. In particular, setting
|
||||
`python-shell-interpreter' to \"ipython3\" requires setting
|
||||
`python-shell-interpreter-args' to \"--simple-prompt\"."
|
||||
:version "28.1"
|
||||
:type 'string
|
||||
:group 'python)
|
||||
|
|
Loading…
Add table
Reference in a new issue