10 # |
10 # |
11 # Lexer class is derived from the highlighter contained in the Kivy package. |
11 # Lexer class is derived from the highlighter contained in the Kivy package. |
12 # Copyright of the original by the Kivy Team. |
12 # Copyright of the original by the Kivy Team. |
13 # |
13 # |
14 |
14 |
15 from __future__ import unicode_literals # __IGNORE_WARNING__ |
15 from __future__ import unicode_literals |
16 |
16 |
17 from pygments.lexer import RegexLexer, bygroups, using |
17 from pygments.lexer import RegexLexer, bygroups, using |
18 from pygments.lexers.agile import PythonLexer |
18 from pygments.lexers.agile import PythonLexer |
19 from pygments.token import Comment, Text, Name, Punctuation, Operator |
19 from pygments.token import Comment, Text, Name, Punctuation, Operator |
20 |
20 |