ThirdParty/Pygments/pygments/token.py

changeset 4697
c2e9bf425554
parent 4172
4f20dba37ab6
child 5072
aab59042fefb
equal deleted inserted replaced
4696:bf4d19a7cade 4697:c2e9bf425554
3 pygments.token 3 pygments.token
4 ~~~~~~~~~~~~~~ 4 ~~~~~~~~~~~~~~
5 5
6 Basic token types and the standard tokens. 6 Basic token types and the standard tokens.
7 7
8 :copyright: Copyright 2006-2014 by the Pygments team, see AUTHORS. 8 :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
9 :license: BSD, see LICENSE for details. 9 :license: BSD, see LICENSE for details.
10 """ 10 """
11 11
12 class _TokenType(tuple): 12 class _TokenType(tuple):
13 parent = None 13 parent = None
177 Operator.Word: 'ow', 177 Operator.Word: 'ow',
178 178
179 Punctuation: 'p', 179 Punctuation: 'p',
180 180
181 Comment: 'c', 181 Comment: 'c',
182 Comment.Hashbang: 'ch',
182 Comment.Multiline: 'cm', 183 Comment.Multiline: 'cm',
183 Comment.Preproc: 'cp', 184 Comment.Preproc: 'cp',
185 Comment.PreprocFile: 'cpf',
184 Comment.Single: 'c1', 186 Comment.Single: 'c1',
185 Comment.Special: 'cs', 187 Comment.Special: 'cs',
186 188
187 Generic: 'g', 189 Generic: 'g',
188 Generic.Deleted: 'gd', 190 Generic.Deleted: 'gd',

eric ide

mercurial