.emacs-my
changeset 1450 44a6e8153899
parent 1449 61455bf4fb87
child 1451 141a71f29bd6
equal deleted inserted replaced
1449:61455bf4fb87 1450:44a6e8153899
  2919 (defvar my-python/pyflakes-command "pyflakes"
  2919 (defvar my-python/pyflakes-command "pyflakes"
  2920   "Command to run pyflakes executable.")
  2920   "Command to run pyflakes executable.")
  2921 (defvar my-python/pyflakes-args ""
  2921 (defvar my-python/pyflakes-args ""
  2922   "Arguments to pass to pyflakes executable.")
  2922   "Arguments to pass to pyflakes executable.")
  2923 
  2923 
       
  2924 (defvar my-python/pyflakes3-command "pyflakes3"
       
  2925   "Command to run pyflakes3 executable.")
       
  2926 (defvar my-python/pyflakes3-args ""
       
  2927   "Arguments to pass to pyflakes3 executable.")
       
  2928 
  2924 (defvar my-python/checker-alist
  2929 (defvar my-python/checker-alist
  2925   '((pylint . (my-python/pylint-command my-python/pylint-args))
  2930   '((pylint . (my-python/pylint-command my-python/pylint-args))
  2926     (pep8 . (my-python/pep8-command my-python/pep8-args))
  2931     (pep8 . (my-python/pep8-command my-python/pep8-args))
  2927     (pyflakes . (my-python/pyflakes-command my-python/pyflakes-args)))
  2932     (pyflakes . (my-python/pyflakes-command my-python/pyflakes-args))
       
  2933     (pyflakes3 . (my-python/pyflakes3-command my-python/pyflakes3-args)))
  2928   "Known Python source code checkers.")
  2934   "Known Python source code checkers.")
  2929 
  2935 
  2930 (defcustom my-python/default-checker 'pyflakes
  2936 (defcustom my-python/default-checker 'pyflakes
  2931   "Default Python source code checker. See `my-python/checker-alist' for full alist."
  2937   "Default Python source code checker. See `my-python/checker-alist' for full alist."
  2932   :group 'my/python
  2938   :group 'my/python