34 and Operator.Word (and, or, in) have been assigned the same style. |
34 and Operator.Word (and, or, in) have been assigned the same style. |
35 |
35 |
36 :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. |
36 :copyright: Copyright 2006-2013 by the Pygments team, see AUTHORS. |
37 :license: BSD, see LICENSE for details. |
37 :license: BSD, see LICENSE for details. |
38 """ |
38 """ |
|
39 |
|
40 from __future__ import unicode_literals # __IGNORE_WARNING__ |
39 |
41 |
40 from pygments.style import Style |
42 from pygments.style import Style |
41 from pygments.token import Keyword, Name, Comment, String, Error, \ |
43 from pygments.token import Keyword, Name, Comment, String, Error, \ |
42 Number, Operator, Generic, Whitespace, Punctuation, Other, Literal |
44 Number, Operator, Generic, Whitespace, Punctuation, Other, Literal |
43 |
45 |