Function: python-shell-completion-native-turn-off

python-shell-completion-native-turn-off is an interactive and byte-compiled function defined in python.el.gz.

Signature

(python-shell-completion-native-turn-off &optional MSG)

Documentation

Turn off shell native completions.

With argument MSG show deactivation message.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-shell-completion-native-turn-off (&optional msg)
  "Turn off shell native completions.
With argument MSG show deactivation message."
  (interactive "p")
  (python-shell-with-shell-buffer
    (setq-local python-shell-completion-native-enable nil)
    (when msg
      (message "Shell native completion is disabled, using fallback"))))