]> git.eshelyaron.com Git - emacs.git/commitdiff
Disable native completion for ipython (Bug#25067)
authorNoam Postavsky <npostavs@gmail.com>
Wed, 8 Feb 2017 02:13:17 +0000 (21:13 -0500)
committerNoam Postavsky <npostavs@gmail.com>
Wed, 8 Feb 2017 02:18:19 +0000 (21:18 -0500)
* lisp/progmodes/python.el:
(python-shell-completion-native-disabled-interpreters): Add "ipython".

lisp/progmodes/python.el

index 306402d8e3b4928322422fd2a13b42a11a25386e..2e08ab4f15cd4cdaf6196e4fede0deed3eea10d9 100644 (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"