aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/python.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/progmodes/python.el')
-rw-r--r--lisp/progmodes/python.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el
index b057e2b24f0..96aa473e9e3 100644
--- a/lisp/progmodes/python.el
+++ b/lisp/progmodes/python.el
@@ -1273,7 +1273,9 @@ fontified."
1273 :feature 'constant 1273 :feature 'constant
1274 :language 'python 1274 :language 'python
1275 '([(true) (false) (none)] @font-lock-constant-face 1275 '([(true) (false) (none)] @font-lock-constant-face
1276 ((identifier) @font-lock-constant-face 1276 ((assignment (identifier) @font-lock-constant-face)
1277 (:match "\\`[A-Z][A-Z0-9_]+\\'" @font-lock-constant-face))
1278 ((call arguments: (argument_list (identifier) @font-lock-constant-face))
1277 (:match "\\`[A-Z][A-Z0-9_]+\\'" @font-lock-constant-face)) 1279 (:match "\\`[A-Z][A-Z0-9_]+\\'" @font-lock-constant-face))
1278 ((attribute 1280 ((attribute
1279 attribute: (identifier) @font-lock-constant-face) 1281 attribute: (identifier) @font-lock-constant-face)