1996-08-21 11:32:37 -03:00
|
|
|
#! /usr/bin/env python
|
2000-02-04 11:28:42 -04:00
|
|
|
|
|
|
|
"""Token constants (from "token.h")."""
|
|
|
|
|
1996-08-21 11:32:37 -03:00
|
|
|
# This file is automatically generated; please don't muck it up!
|
|
|
|
#
|
|
|
|
# To update the symbols in this file, 'cd' to the top directory of
|
|
|
|
# the python source tree after building the interpreter and run:
|
|
|
|
#
|
1997-10-22 18:00:49 -03:00
|
|
|
# python Lib/token.py
|
1993-11-11 06:31:23 -04:00
|
|
|
|
1996-08-21 11:32:37 -03:00
|
|
|
#--start constants--
|
1993-11-11 06:31:23 -04:00
|
|
|
ENDMARKER = 0
|
|
|
|
NAME = 1
|
|
|
|
NUMBER = 2
|
|
|
|
STRING = 3
|
|
|
|
NEWLINE = 4
|
|
|
|
INDENT = 5
|
|
|
|
DEDENT = 6
|
|
|
|
LPAR = 7
|
|
|
|
RPAR = 8
|
|
|
|
LSQB = 9
|
|
|
|
RSQB = 10
|
|
|
|
COLON = 11
|
|
|
|
COMMA = 12
|
|
|
|
SEMI = 13
|
|
|
|
PLUS = 14
|
|
|
|
MINUS = 15
|
|
|
|
STAR = 16
|
|
|
|
SLASH = 17
|
|
|
|
VBAR = 18
|
|
|
|
AMPER = 19
|
|
|
|
LESS = 20
|
|
|
|
GREATER = 21
|
|
|
|
EQUAL = 22
|
|
|
|
DOT = 23
|
|
|
|
PERCENT = 24
|
|
|
|
LBRACE = 26
|
|
|
|
RBRACE = 27
|
|
|
|
EQEQUAL = 28
|
|
|
|
NOTEQUAL = 29
|
|
|
|
LESSEQUAL = 30
|
|
|
|
GREATEREQUAL = 31
|
|
|
|
TILDE = 32
|
|
|
|
CIRCUMFLEX = 33
|
|
|
|
LEFTSHIFT = 34
|
|
|
|
RIGHTSHIFT = 35
|
1996-07-20 23:17:52 -03:00
|
|
|
DOUBLESTAR = 36
|
2000-08-24 18:08:39 -03:00
|
|
|
PLUSEQUAL = 37
|
|
|
|
MINEQUAL = 38
|
|
|
|
STAREQUAL = 39
|
|
|
|
SLASHEQUAL = 40
|
|
|
|
PERCENTEQUAL = 41
|
|
|
|
AMPEREQUAL = 42
|
|
|
|
VBAREQUAL = 43
|
|
|
|
CIRCUMFLEXEQUAL = 44
|
|
|
|
LEFTSHIFTEQUAL = 45
|
|
|
|
RIGHTSHIFTEQUAL = 46
|
|
|
|
DOUBLESTAREQUAL = 47
|
2001-08-08 03:35:56 -03:00
|
|
|
DOUBLESLASH = 48
|
|
|
|
DOUBLESLASHEQUAL = 49
|
2004-08-02 03:10:11 -03:00
|
|
|
AT = 50
|
2006-12-28 02:47:50 -04:00
|
|
|
RARROW = 51
|
2007-03-18 16:01:53 -03:00
|
|
|
ELLIPSIS = 52
|
|
|
|
OP = 53
|
|
|
|
ERRORTOKEN = 54
|
|
|
|
N_TOKENS = 55
|
1996-08-21 11:32:37 -03:00
|
|
|
NT_OFFSET = 256
|
|
|
|
#--end constants--
|
1993-11-11 06:31:23 -04:00
|
|
|
|
|
|
|
tok_name = {}
|
2007-02-11 02:12:03 -04:00
|
|
|
for _name, _value in list(globals().items()):
|
1997-10-06 18:28:04 -03:00
|
|
|
if type(_value) is type(0):
|
1998-03-26 17:13:24 -04:00
|
|
|
tok_name[_value] = _name
|
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,61066-61080 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61063 | andrew.kuchling | 2008-02-25 17:29:19 +0100 (Mon, 25 Feb 2008) | 1 line
Move .setupterm() output so that we don't try to call endwin() if it fails
........
r61064 | andrew.kuchling | 2008-02-25 17:29:58 +0100 (Mon, 25 Feb 2008) | 1 line
Use file descriptor for real stdout
........
r61067 | facundo.batista | 2008-02-25 19:06:00 +0100 (Mon, 25 Feb 2008) | 4 lines
Issue 2117. Update compiler module to handle class decorators.
Thanks Thomas Herve
........
r61069 | georg.brandl | 2008-02-25 21:17:56 +0100 (Mon, 25 Feb 2008) | 2 lines
Rename sphinx.addons to sphinx.ext.
........
r61071 | georg.brandl | 2008-02-25 21:20:45 +0100 (Mon, 25 Feb 2008) | 2 lines
Revert r61029.
........
r61072 | facundo.batista | 2008-02-25 23:33:55 +0100 (Mon, 25 Feb 2008) | 4 lines
Issue 2168. gdbm and dbm needs to be iterable; this fixes a
failure in the shelve module. Thanks Thomas Herve.
........
r61073 | raymond.hettinger | 2008-02-25 23:42:32 +0100 (Mon, 25 Feb 2008) | 1 line
Make sure the itertools filter functions give the same performance for func=bool as func=None.
........
r61074 | raymond.hettinger | 2008-02-26 00:17:41 +0100 (Tue, 26 Feb 2008) | 1 line
Revert part of r60927 which made invalid assumptions about the API offered by db modules.
........
r61075 | facundo.batista | 2008-02-26 00:46:02 +0100 (Tue, 26 Feb 2008) | 3 lines
Coerced PyBool_Type to be able to compare it.
........
r61076 | raymond.hettinger | 2008-02-26 03:46:54 +0100 (Tue, 26 Feb 2008) | 1 line
Docs for itertools.combinations(). Implementation in forthcoming checkin.
........
r61077 | neal.norwitz | 2008-02-26 05:50:37 +0100 (Tue, 26 Feb 2008) | 3 lines
Don't use a hard coded port. This test could hang/fail if the port is in use.
Speed this test up by avoiding a sleep and using the event.
........
r61078 | neal.norwitz | 2008-02-26 06:12:50 +0100 (Tue, 26 Feb 2008) | 1 line
Whitespace normalization
........
r61079 | neal.norwitz | 2008-02-26 06:23:51 +0100 (Tue, 26 Feb 2008) | 1 line
Whitespace normalization
........
r61080 | georg.brandl | 2008-02-26 07:40:10 +0100 (Tue, 26 Feb 2008) | 2 lines
Banish tab.
........
2008-02-26 04:18:30 -04:00
|
|
|
del _name, _value
|
1997-10-06 18:28:04 -03:00
|
|
|
|
1993-11-11 06:31:23 -04:00
|
|
|
|
1996-07-20 23:17:52 -03:00
|
|
|
def ISTERMINAL(x):
|
|
|
|
return x < NT_OFFSET
|
|
|
|
|
|
|
|
def ISNONTERMINAL(x):
|
|
|
|
return x >= NT_OFFSET
|
|
|
|
|
|
|
|
def ISEOF(x):
|
|
|
|
return x == ENDMARKER
|
1996-08-21 11:32:37 -03:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
1997-10-22 18:00:49 -03:00
|
|
|
import re
|
1996-08-21 11:32:37 -03:00
|
|
|
import sys
|
|
|
|
args = sys.argv[1:]
|
|
|
|
inFileName = args and args[0] or "Include/token.h"
|
|
|
|
outFileName = "Lib/token.py"
|
|
|
|
if len(args) > 1:
|
1998-03-26 17:13:24 -04:00
|
|
|
outFileName = args[1]
|
1996-08-21 11:32:37 -03:00
|
|
|
try:
|
1998-03-26 17:13:24 -04:00
|
|
|
fp = open(inFileName)
|
2007-01-10 12:19:56 -04:00
|
|
|
except IOError as err:
|
1998-03-26 17:13:24 -04:00
|
|
|
sys.stdout.write("I/O error: %s\n" % str(err))
|
|
|
|
sys.exit(1)
|
2001-02-09 07:10:16 -04:00
|
|
|
lines = fp.read().split("\n")
|
1996-08-21 11:32:37 -03:00
|
|
|
fp.close()
|
1997-10-22 18:00:49 -03:00
|
|
|
prog = re.compile(
|
2002-10-03 06:42:01 -03:00
|
|
|
"#define[ \t][ \t]*([A-Z0-9][A-Z0-9_]*)[ \t][ \t]*([0-9][0-9]*)",
|
1998-03-26 17:13:24 -04:00
|
|
|
re.IGNORECASE)
|
1996-08-21 11:32:37 -03:00
|
|
|
tokens = {}
|
|
|
|
for line in lines:
|
1998-03-26 17:13:24 -04:00
|
|
|
match = prog.match(line)
|
|
|
|
if match:
|
|
|
|
name, val = match.group(1, 2)
|
2001-02-09 20:22:33 -04:00
|
|
|
val = int(val)
|
1998-03-26 17:13:24 -04:00
|
|
|
tokens[val] = name # reverse so we can sort them...
|
2007-02-26 10:08:27 -04:00
|
|
|
keys = sorted(tokens.keys())
|
1996-08-21 11:32:37 -03:00
|
|
|
# load the output skeleton from the target:
|
|
|
|
try:
|
1998-03-26 17:13:24 -04:00
|
|
|
fp = open(outFileName)
|
2007-01-10 12:19:56 -04:00
|
|
|
except IOError as err:
|
1998-03-26 17:13:24 -04:00
|
|
|
sys.stderr.write("I/O error: %s\n" % str(err))
|
|
|
|
sys.exit(2)
|
2001-02-09 07:10:16 -04:00
|
|
|
format = fp.read().split("\n")
|
1996-08-21 11:32:37 -03:00
|
|
|
fp.close()
|
|
|
|
try:
|
1998-03-26 17:13:24 -04:00
|
|
|
start = format.index("#--start constants--") + 1
|
|
|
|
end = format.index("#--end constants--")
|
1996-08-21 11:32:37 -03:00
|
|
|
except ValueError:
|
1998-03-26 17:13:24 -04:00
|
|
|
sys.stderr.write("target does not contain format markers")
|
|
|
|
sys.exit(3)
|
1996-08-21 11:32:37 -03:00
|
|
|
lines = []
|
|
|
|
for val in keys:
|
1998-03-26 17:13:24 -04:00
|
|
|
lines.append("%s = %d" % (tokens[val], val))
|
1996-08-21 11:32:37 -03:00
|
|
|
format[start:end] = lines
|
|
|
|
try:
|
1998-03-26 17:13:24 -04:00
|
|
|
fp = open(outFileName, 'w')
|
2007-01-10 12:19:56 -04:00
|
|
|
except IOError as err:
|
1998-03-26 17:13:24 -04:00
|
|
|
sys.stderr.write("I/O error: %s\n" % str(err))
|
|
|
|
sys.exit(4)
|
2001-02-09 07:10:16 -04:00
|
|
|
fp.write("\n".join(format))
|
1996-08-21 11:32:37 -03:00
|
|
|
fp.close()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|