diff options
author | gbrandl <devnull@localhost> | 2009-01-04 15:26:47 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2009-01-04 15:26:47 +0100 |
commit | 778e736ce9d0b19632cf2f18e216b12e2001d390 (patch) | |
tree | 9ff4148fe0dbd44cc8843547b76f155dc8440c1d /pygments/lexers/other.py | |
parent | 283da4a0c3beac704d79530d1517021831894739 (diff) | |
download | pygments-778e736ce9d0b19632cf2f18e216b12e2001d390.tar.gz |
Update copyrighting style to standard "team" tags.
Update AUTHORS file accordingly.
Diffstat (limited to 'pygments/lexers/other.py')
-rw-r--r-- | pygments/lexers/other.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pygments/lexers/other.py b/pygments/lexers/other.py index 2b1eafaa..83913570 100644 --- a/pygments/lexers/other.py +++ b/pygments/lexers/other.py @@ -5,10 +5,8 @@ Lexers for other languages. - :copyright: 2006-2009 by Georg Brandl, Tim Hatch <tim@timhatch.com>, - Stou Sandalski, Paulo Moura, Clara Dimene, - Andreas Amann <aamann@mac.com>. - :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 @@ -581,6 +579,7 @@ class MOOCodeLexer(RegexLexer): ] } + class SmalltalkLexer(RegexLexer): """ For `Smalltalk <http://www.smalltalk.org/>`_ syntax. @@ -702,6 +701,7 @@ class SmalltalkLexer(RegexLexer): ], } + class TcshLexer(RegexLexer): """ Lexer for tcsh scripts. |