summaryrefslogtreecommitdiff
path: root/tests/support/python_lexer.py
blob: 565ee6742cc85e33f56b6f4a0e6b527fd455ccf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- coding: utf-8 -*-
# pygments.lexers.python (as CustomLexer) for test_cmdline.py

from pygments.lexers import PythonLexer


class CustomLexer(PythonLexer):
    name = 'PythonLexerWrapper'


class LexerWrapper(CustomLexer):
    name = 'PythonLexerWrapperWrapper'