]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't disable ipython as a native interpreter
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 8 Sep 2021 06:59:29 +0000 (08:59 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 8 Sep 2021 06:59:29 +0000 (08:59 +0200)
* 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

index d8ec032402e20894093a5dea0d8567597f3f62cf..db7008df24461f4a00e8a30f6db03edfb358526b 100644 (file)
@@ -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