diff options
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index f79d9a47d31..895117b9ee3 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el | |||
| @@ -3304,8 +3304,9 @@ the full statement in the case of imports." | |||
| 3304 | (defcustom python-shell-completion-native-disabled-interpreters | 3304 | (defcustom python-shell-completion-native-disabled-interpreters |
| 3305 | ;; PyPy's readline cannot handle some escape sequences yet. Native | 3305 | ;; PyPy's readline cannot handle some escape sequences yet. Native |
| 3306 | ;; completion was found to be non-functional for IPython (see | 3306 | ;; completion was found to be non-functional for IPython (see |
| 3307 | ;; Bug#25067). | 3307 | ;; Bug#25067). Native completion doesn't work on w32 (Bug#28580). |
| 3308 | (list "pypy" "ipython") | 3308 | (if (eq system-type 'windows-nt) '("") |
| 3309 | '("pypy" "ipython")) | ||
| 3309 | "List of disabled interpreters. | 3310 | "List of disabled interpreters. |
| 3310 | When a match is found, native completion is disabled." | 3311 | When a match is found, native completion is disabled." |
| 3311 | :version "25.1" | 3312 | :version "25.1" |