diff options
author | Georg Brandl <georg@python.org> | 2012-03-10 14:38:22 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-03-10 14:38:22 +0100 |
commit | 7ff9fccafad1131cb706745fe7fbbfffefb3baef (patch) | |
tree | 671b1e84d1a4ac97c2e92dc11545898f8cb5ee1f /pygments/lexers/jvm.py | |
parent | 8cbeb3168e98cb67814c03db263a2c544dbc054b (diff) | |
download | pygments-7ff9fccafad1131cb706745fe7fbbfffefb3baef.tar.gz |
Style fixes, remove unneeded import.
Diffstat (limited to 'pygments/lexers/jvm.py')
-rw-r--r-- | pygments/lexers/jvm.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pygments/lexers/jvm.py b/pygments/lexers/jvm.py index 8863e00d..6e3e103f 100644 --- a/pygments/lexers/jvm.py +++ b/pygments/lexers/jvm.py @@ -677,9 +677,13 @@ class ClojureLexer(RegexLexer): ], } + class TeaLangLexer(RegexLexer): """ - For `Tea <http://teatrove.org/>`_ source code. Only used within a TeaTemplateLexer. + For `Tea <http://teatrove.org/>`_ source code. Only used within a + TeaTemplateLexer. + + *New in Pygments 1.5.* """ flags = re.MULTILINE | re.DOTALL @@ -721,5 +725,4 @@ class TeaLangLexer(RegexLexer): 'import': [ (r'[a-zA-Z0-9_.]+\*?', Name.Namespace, '#pop') ], - } - + } |