summaryrefslogtreecommitdiff
path: root/pygments/lexers/slash.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2019-05-28 07:00:40 +0200
committerGeorg Brandl <georg@python.org>2019-05-28 07:00:40 +0200
commit0eca5a9db1b3c1f169f3fabda9fe9b72876a6056 (patch)
treee726dacdc08cff04bfa8cbe4bad9cc4db471db79 /pygments/lexers/slash.py
parentffc920fcaaa6e220be32e07db7e3d001dc9a4f03 (diff)
downloadpygments-0eca5a9db1b3c1f169f3fabda9fe9b72876a6056.tar.gz
Fixup all headers and some more minor problems.2.4.2
Diffstat (limited to 'pygments/lexers/slash.py')
-rw-r--r--pygments/lexers/slash.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/pygments/lexers/slash.py b/pygments/lexers/slash.py
index bd73d463..b6314105 100644
--- a/pygments/lexers/slash.py
+++ b/pygments/lexers/slash.py
@@ -6,15 +6,13 @@
Lexer for the `Slash <https://github.com/arturadib/Slash-A>`_ programming
language.
- :copyright: Copyright 2012 by GitHub, Inc
+ :copyright: Copyright 2006-2019 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
-import re
-
from pygments.lexer import ExtendedRegexLexer, bygroups, DelegatingLexer
from pygments.token import Name, Number, String, Comment, Punctuation, \
- Other, Keyword, Operator, Whitespace
+ Other, Keyword, Operator, Whitespace
__all__ = ['SlashLexer']