Function: python-shell-completion-native-try

python-shell-completion-native-try is a byte-compiled function defined in python.el.gz.

Signature

(python-shell-completion-native-try)

Documentation

Return non-nil if can trigger native completion.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defun python-shell-completion-native-try ()
  "Return non-nil if can trigger native completion."
  (let ((python-shell-completion-native-enable t)
        (python-shell-completion-native-output-timeout
         python-shell-completion-native-try-output-timeout))
    (python-shell-completion-native-get-completions
     (get-buffer-process (current-buffer))
     "_")))