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.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index d4ed1392703..58b16794ee0 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -3276,8 +3276,10 @@ the full statement in the case of imports."
3276 "Completion string code must work for (i)pdb.") 3276 "Completion string code must work for (i)pdb.")
3277 3277
3278(defcustom python-shell-completion-native-disabled-interpreters 3278(defcustom python-shell-completion-native-disabled-interpreters
3279 ;; PyPy's readline cannot handle some escape sequences yet. 3279 ;; PyPy's readline cannot handle some escape sequences yet. Native
3280 (list "pypy") 3280 ;; completion was found to be non-functional for IPython (see
3281 ;; Bug#25067).
3282 (list "pypy" "ipython")
3281 "List of disabled interpreters. 3283 "List of disabled interpreters.
3282When a match is found, native completion is disabled." 3284When a match is found, native completion is disabled."
3283 :version "25.1" 3285 :version "25.1"