Variable: python-check-command

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

Value

"install pyflakes, pylint or something else"

Documentation

Command used to check a Python file.

Source Code

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

(defcustom python-check-command
  (or (executable-find "pyflakes")
      (executable-find "epylint")
      "install pyflakes, pylint or something else")
  "Command used to check a Python file."
  :type 'string
  :group 'python)