Variable: python-check-command

python-check-command is a customizable variable defined in python.el.gz.

Value

"pyflakes"

Documentation

Command used to check a Python file.

This variable was added, or its default value changed, in Emacs 29.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
;;; Code check

(defcustom python-check-command
  (cond ((executable-find "pyflakes") "pyflakes")
        ((executable-find "epylint") "epylint")
        (t "pyflakes"))
  "Command used to check a Python file."
  :type 'string
  :version "29.1")