emacs-diffs
[Top][All Lists]
Advanced

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

master afddd55 1/4: Don't disable ipython as a native interpreter


From: Lars Ingebrigtsen
Subject: master afddd55 1/4: Don't disable ipython as a native interpreter
Date: Wed, 8 Sep 2021 03:45:56 -0400 (EDT)

branch: master
commit afddd5529d8e23a0a4b612fed9792f6beda07965
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Don't disable ipython as a native interpreter
    
    * lisp/progmodes/python.el
    (python-shell-completion-native-disabled-interpreters): Remove
    ipython from list, because it apparently works fine these days
    (bug#50458).
---
 lisp/progmodes/python.el | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index d8ec032..db7008d 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3537,13 +3537,12 @@ the full statement in the case of imports."
 
 (defcustom python-shell-completion-native-disabled-interpreters
   ;; PyPy's readline cannot handle some escape sequences yet.  Native
-  ;; completion was found to be non-functional for IPython (see
-  ;; Bug#25067).  Native completion doesn't work on w32 (Bug#28580).
+  ;; completion doesn't work on w32 (Bug#28580).
   (if (eq system-type 'windows-nt) '("")
-    '("pypy" "ipython"))
+    '("pypy"))
   "List of disabled interpreters.
 When a match is found, native completion is disabled."
-  :version "25.1"
+  :version "28.1"
   :type '(repeat string))
 
 (defcustom python-shell-completion-native-enable t



reply via email to

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