1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

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.")
(defcustom python-shell-completion-native-disabled-interpreters
;; PyPy's readline cannot handle some escape sequences yet.
(list "pypy")
;; PyPy's readline cannot handle some escape sequences yet. Native
;; completion was found to be non-functional for IPython (see
;; Bug#25067).
(list "pypy" "ipython")
"List of disabled interpreters.
When a match is found, native completion is disabled."
:version "25.1"