diff options
author | gbrandl <devnull@localhost> | 2009-01-04 22:41:03 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2009-01-04 22:41:03 +0100 |
commit | dad6a5d6c0b68ee9b3150eefb86ded68328012c8 (patch) | |
tree | a14441a8b9bdb0de97294f476d7198759c0e930a | |
parent | e819cfa6cab4e3cfaaf5fb4c96b0da744141db23 (diff) | |
download | pygments-dad6a5d6c0b68ee9b3150eefb86ded68328012c8.tar.gz |
Fix "make check" nits.
-rw-r--r-- | pygments/lexers/parsers.py | 5 | ||||
-rw-r--r-- | pygments/styles/tango.py | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/pygments/lexers/parsers.py b/pygments/lexers/parsers.py index a395aca2..3c718015 100644 --- a/pygments/lexers/parsers.py +++ b/pygments/lexers/parsers.py @@ -5,9 +5,8 @@ Lexers for parser generators. - :copyright: 2008-2009 by Ana Nelson <ana@ananelson.com>, Tim Hatch. - - :license: BSD, see LICENSE for more details. + :copyright: Copyright 2006-2009 by the Pygments team, see AUTHORS. + :license: BSD, see LICENSE for details. """ import re diff --git a/pygments/styles/tango.py b/pygments/styles/tango.py index 0d8347ae..b1b8caf0 100644 --- a/pygments/styles/tango.py +++ b/pygments/styles/tango.py @@ -85,10 +85,10 @@ class TangoStyle(Style): Name: "#000000", # class: 'n' Name.Attribute: "#c4a000", # class: 'na', - to be revised Name.Builtin: "#204a87", # class: 'nb' - Name.Builtin.Pseudo: "#3465a4", # class: 'bp' - Name.Class: "#000000", # class: 'nc' - to be revised + Name.Builtin.Pseudo: "#3465a4", # class: 'bp' + Name.Class: "#000000", # class: 'nc' - to be revised Name.Constant: "#000000", # class: 'no', - to be revised - Name.Decorator: "bold #5c35cc", # class: 'nd', - to be revised + Name.Decorator: "bold #5c35cc", # class: 'nd', - to be revised Name.Entity: "#ce5c00", # class: 'ni', Name.Exception: "bold #cc0000", # class: 'ne', Name.Function: "#000000", # class: 'nf' |