• Home
  • Raw
  • Download

Lines Matching refs:intern

21 from jinja2._compat import implements_iterator, intern, iteritems, text_type
59 TOKEN_ADD = intern('add')
60 TOKEN_ASSIGN = intern('assign')
61 TOKEN_COLON = intern('colon')
62 TOKEN_COMMA = intern('comma')
63 TOKEN_DIV = intern('div')
64 TOKEN_DOT = intern('dot')
65 TOKEN_EQ = intern('eq')
66 TOKEN_FLOORDIV = intern('floordiv')
67 TOKEN_GT = intern('gt')
68 TOKEN_GTEQ = intern('gteq')
69 TOKEN_LBRACE = intern('lbrace')
70 TOKEN_LBRACKET = intern('lbracket')
71 TOKEN_LPAREN = intern('lparen')
72 TOKEN_LT = intern('lt')
73 TOKEN_LTEQ = intern('lteq')
74 TOKEN_MOD = intern('mod')
75 TOKEN_MUL = intern('mul')
76 TOKEN_NE = intern('ne')
77 TOKEN_PIPE = intern('pipe')
78 TOKEN_POW = intern('pow')
79 TOKEN_RBRACE = intern('rbrace')
80 TOKEN_RBRACKET = intern('rbracket')
81 TOKEN_RPAREN = intern('rparen')
82 TOKEN_SEMICOLON = intern('semicolon')
83 TOKEN_SUB = intern('sub')
84 TOKEN_TILDE = intern('tilde')
85 TOKEN_WHITESPACE = intern('whitespace')
86 TOKEN_FLOAT = intern('float')
87 TOKEN_INTEGER = intern('integer')
88 TOKEN_NAME = intern('name')
89 TOKEN_STRING = intern('string')
90 TOKEN_OPERATOR = intern('operator')
91 TOKEN_BLOCK_BEGIN = intern('block_begin')
92 TOKEN_BLOCK_END = intern('block_end')
93 TOKEN_VARIABLE_BEGIN = intern('variable_begin')
94 TOKEN_VARIABLE_END = intern('variable_end')
95 TOKEN_RAW_BEGIN = intern('raw_begin')
96 TOKEN_RAW_END = intern('raw_end')
97 TOKEN_COMMENT_BEGIN = intern('comment_begin')
98 TOKEN_COMMENT_END = intern('comment_end')
99 TOKEN_COMMENT = intern('comment')
100 TOKEN_LINESTATEMENT_BEGIN = intern('linestatement_begin')
101 TOKEN_LINESTATEMENT_END = intern('linestatement_end')
102 TOKEN_LINECOMMENT_BEGIN = intern('linecomment_begin')
103 TOKEN_LINECOMMENT_END = intern('linecomment_end')
104 TOKEN_LINECOMMENT = intern('linecomment')
105 TOKEN_DATA = intern('data')
106 TOKEN_INITIAL = intern('initial')
107 TOKEN_EOF = intern('eof')
238 return tuple.__new__(cls, (lineno, intern(str(type)), value))