ThirdParty/Pygments/pygments/styles/tango.py

changeset 4172
4f20dba37ab6
parent 3145
a9de05d4a22f
child 4697
c2e9bf425554
equal deleted inserted replaced
4170:8bc578136279 4172:4f20dba37ab6
31 31
32 Taking Python for example, comments (Comment.*) and docstrings (String.Doc) 32 Taking Python for example, comments (Comment.*) and docstrings (String.Doc)
33 have been chosen to have the same style. Similarly, keywords (Keyword.*), 33 have been chosen to have the same style. Similarly, keywords (Keyword.*),
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-2014 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
41 39
42 from pygments.style import Style 40 from pygments.style import Style
43 from pygments.token import Keyword, Name, Comment, String, Error, \ 41 from pygments.token import Keyword, Name, Comment, String, Error, \
44 Number, Operator, Generic, Whitespace, Punctuation, Other, Literal 42 Number, Operator, Generic, Whitespace, Punctuation, Other, Literal
45 43

eric ide

mercurial