Disable native completion for ipython (Bug#25067)

* lisp/progmodes/python.el:
(python-shell-completion-native-disabled-interpreters): Add "ipython".
This commit is contained in:
Noam Postavsky 2017-02-07 21:13:17 -05:00
parent 38fc456d27
commit 0ba9932d14

View file

@ -3255,8 +3255,10 @@ the full statement in the case of imports."
"Completion string code must work for (i)pdb.") "Completion string code must work for (i)pdb.")
(defcustom python-shell-completion-native-disabled-interpreters (defcustom python-shell-completion-native-disabled-interpreters
;; PyPy's readline cannot handle some escape sequences yet. ;; PyPy's readline cannot handle some escape sequences yet. Native
(list "pypy") ;; completion was found to be non-functional for IPython (see
;; Bug#25067).
(list "pypy" "ipython")
"List of disabled interpreters. "List of disabled interpreters.
When a match is found, native completion is disabled." When a match is found, native completion is disabled."
:version "25.1" :version "25.1"