diff options
| author | Lars Ingebrigtsen | 2021-09-08 08:59:29 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2021-09-08 08:59:29 +0200 |
| commit | afddd5529d8e23a0a4b612fed9792f6beda07965 (patch) | |
| tree | dffed7af02fbb25858c319da573d10b95e98f108 /lisp/progmodes/python.el | |
| parent | 663f7e3fcc1928859e5a5d18633dd92c97f1f505 (diff) | |
| download | emacs-afddd5529d8e23a0a4b612fed9792f6beda07965.tar.gz emacs-afddd5529d8e23a0a4b612fed9792f6beda07965.zip | |
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).
Diffstat (limited to 'lisp/progmodes/python.el')
| -rw-r--r-- | lisp/progmodes/python.el | 7 |
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. |
| 3545 | When a match is found, native completion is disabled." | 3544 | When 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 |