Variable: python-font-lock-keywords
python-font-lock-keywords is a variable defined in python.el.gz.
Value
(python-font-lock-keywords-level-1 python-font-lock-keywords-level-1
python-font-lock-keywords-level-2
python-font-lock-keywords-maximum-decoration)
Documentation
List of font lock keyword specifications to use in python-mode.
Which one will be chosen depends on the value of
font-lock-maximum-decoration.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defvar python-font-lock-keywords
'(python-font-lock-keywords-level-1 ; When `font-lock-maximum-decoration' is nil.
python-font-lock-keywords-level-1 ; When `font-lock-maximum-decoration' is 1.
python-font-lock-keywords-level-2 ; When `font-lock-maximum-decoration' is 2.
python-font-lock-keywords-maximum-decoration ; When `font-lock-maximum-decoration'
; is more than 1, or t (which it is,
; by default).
)
"List of font lock keyword specifications to use in `python-mode'.
Which one will be chosen depends on the value of
`font-lock-maximum-decoration'.")