emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 0ba9932: Disable native completion for ipython (B


From: Noam Postavsky
Subject: [Emacs-diffs] emacs-25 0ba9932: Disable native completion for ipython (Bug#25067)
Date: Tue, 7 Feb 2017 21:20:06 -0500 (EST)

branch: emacs-25
commit 0ba9932d1446e91fcc96f1d3303fac5ca5029d71
Author: Noam Postavsky <address@hidden>
Commit: Noam Postavsky <address@hidden>

    Disable native completion for ipython (Bug#25067)
    
    * lisp/progmodes/python.el:
    (python-shell-completion-native-disabled-interpreters): Add "ipython".
---
 lisp/progmodes/python.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index 306402d..2e08ab4 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -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"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]