aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index d8ec032402e..db7008df244 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3537,13 +3537,12 @@ the full statement in the case of imports."
3537 3537
3538(defcustom python-shell-completion-native-disabled-interpreters 3538(defcustom python-shell-completion-native-disabled-interpreters
3539 ;; PyPy's readline cannot handle some escape sequences yet. Native 3539 ;; PyPy's readline cannot handle some escape sequences yet. Native
3540 ;; completion was found to be non-functional for IPython (see 3540 ;; completion doesn't work on w32 (Bug#28580).
3541 ;; Bug#25067). Native completion doesn't work on w32 (Bug#28580).
3542 (if (eq system-type 'windows-nt) '("") 3541 (if (eq system-type 'windows-nt) '("")
3543 '("pypy" "ipython")) 3542 '("pypy"))
3544 "List of disabled interpreters. 3543 "List of disabled interpreters.
3545When a match is found, native completion is disabled." 3544When a match is found, native completion is disabled."
3546 :version "25.1" 3545 :version "28.1"
3547 :type '(repeat string)) 3546 :type '(repeat string))
3548 3547
3549(defcustom python-shell-completion-native-enable t 3548(defcustom python-shell-completion-native-enable t