source: vendor/python/2.5/Lib/token.py@ 3232

Last change on this file since 3232 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 2.9 KB
Line 
1#! /usr/bin/env python
2
3"""Token constants (from "token.h")."""
4
5# This file is automatically generated; please don't muck it up!
6#
7# To update the symbols in this file, 'cd' to the top directory of
8# the python source tree after building the interpreter and run:
9#
10# python Lib/token.py
11
12#--start constants--
13ENDMARKER = 0
14NAME = 1
15NUMBER = 2
16STRING = 3
17NEWLINE = 4
18INDENT = 5
19DEDENT = 6
20LPAR = 7
21RPAR = 8
22LSQB = 9
23RSQB = 10
24COLON = 11
25COMMA = 12
26SEMI = 13
27PLUS = 14
28MINUS = 15
29STAR = 16
30SLASH = 17
31VBAR = 18
32AMPER = 19
33LESS = 20
34GREATER = 21
35EQUAL = 22
36DOT = 23
37PERCENT = 24
38BACKQUOTE = 25
39LBRACE = 26
40RBRACE = 27
41EQEQUAL = 28
42NOTEQUAL = 29
43LESSEQUAL = 30
44GREATEREQUAL = 31
45TILDE = 32
46CIRCUMFLEX = 33
47LEFTSHIFT = 34
48RIGHTSHIFT = 35