summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2016-01-16 12:10:07 +0100
committerGeorg Brandl <georg@python.org>2016-01-16 12:10:07 +0100
commita35d0f75cbe17c7873f528c0b47c2e9468858e1a (patch)
tree943c5dd6937ab9eb0a676af94f69f2929e55d0fa
parentfe642a9838af4716485f94fa5bd3e12684d9e14e (diff)
downloadpygments-a35d0f75cbe17c7873f528c0b47c2e9468858e1a.tar.gz
"make check" style fixes.
-rw-r--r--pygments/formatters/irc.py2
-rw-r--r--pygments/lexers/_csound_builtins.py7
-rw-r--r--pygments/lexers/elm.py2
-rw-r--r--pygments/lexers/ezhil.py2
-rw-r--r--pygments/lexers/j.py2
-rw-r--r--pygments/lexers/trafficscript.py3
-rw-r--r--pygments/styles/lovelace.py3
7 files changed, 18 insertions, 3 deletions
diff --git a/pygments/formatters/irc.py b/pygments/formatters/irc.py
index 44fe6c4a..d1eed0ac 100644
--- a/pygments/formatters/irc.py
+++ b/pygments/formatters/irc.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
pygments.formatters.irc
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ ~~~~~~~~~~~~~~~~~~~~~~~
Formatter for IRC output
diff --git a/pygments/lexers/_csound_builtins.py b/pygments/lexers/_csound_builtins.py
index 5f7a798a..a88e0a83 100644
--- a/pygments/lexers/_csound_builtins.py
+++ b/pygments/lexers/_csound_builtins.py
@@ -1,4 +1,11 @@
# -*- coding: utf-8 -*-
+"""
+ pygments.lexers._csound_builtins
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+ :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
+"""
# Opcodes in Csound 6.05 from
# csound --list-opcodes
diff --git a/pygments/lexers/elm.py b/pygments/lexers/elm.py
index b8206c6d..7df6346a 100644
--- a/pygments/lexers/elm.py
+++ b/pygments/lexers/elm.py
@@ -5,6 +5,8 @@
Lexer for the Elm programming language.
+ :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from pygments.lexer import RegexLexer, words, include
diff --git a/pygments/lexers/ezhil.py b/pygments/lexers/ezhil.py
index 713541ee..a5468a0f 100644
--- a/pygments/lexers/ezhil.py
+++ b/pygments/lexers/ezhil.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
pygments.lexers.ezhil
- ~~~~~~~~~~~~~~~~~~~~~~
+ ~~~~~~~~~~~~~~~~~~~~~
Pygments lexers for Ezhil language.
diff --git a/pygments/lexers/j.py b/pygments/lexers/j.py
index 20176d0d..278374e5 100644
--- a/pygments/lexers/j.py
+++ b/pygments/lexers/j.py
@@ -5,6 +5,8 @@
Lexer for the J programming language.
+ :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from pygments.lexer import RegexLexer, words, include
diff --git a/pygments/lexers/trafficscript.py b/pygments/lexers/trafficscript.py
index 34ca7d5b..03ab6a06 100644
--- a/pygments/lexers/trafficscript.py
+++ b/pygments/lexers/trafficscript.py
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
"""
-
pygments.lexers.trafficscript
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -9,6 +8,7 @@
:copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
+
import re
from pygments.lexer import RegexLexer
@@ -16,6 +16,7 @@ from pygments.token import String, Number, Name, Keyword, Operator, Text, Commen
__all__ = ['RtsLexer']
+
class RtsLexer(RegexLexer):
"""
For `Riverbed Stingray Traffic Manager <http://www.riverbed.com/stingray>`_
diff --git a/pygments/styles/lovelace.py b/pygments/styles/lovelace.py
index 31bd5505..4009274c 100644
--- a/pygments/styles/lovelace.py
+++ b/pygments/styles/lovelace.py
@@ -8,6 +8,9 @@
Pygments style by Miikka Salminen (https://github.com/miikkas)
A desaturated, somewhat subdued style created for the Lovelace interactive
learning environment.
+
+ :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
+ :license: BSD, see LICENSE for details.
"""
from pygments.style import Style