1997-03-20 19:45:51 +00:00
|
|
|
#! /usr/bin/env python
|
2000-02-04 15:10:34 +00:00
|
|
|
|
|
|
|
"""Keywords (from "graminit.c")
|
|
|
|
|
|
|
|
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:
|
|
|
|
|
|
|
|
python Lib/keyword.py
|
|
|
|
"""
|
1997-03-20 19:45:51 +00:00
|
|
|
|
2001-01-24 06:27:27 +00:00
|
|
|
__all__ = ["iskeyword"]
|
|
|
|
|
1997-03-20 19:45:51 +00:00
|
|
|
kwlist = [
|
|
|
|
#--start keywords--
|
|
|
|
'and',
|
1997-07-23 18:10:52 +00:00
|
|
|
'assert',
|
1997-03-20 19:45:51 +00:00
|
|
|
'break',
|
|
|
|
'class',
|
|
|
|
'continue',
|
|
|
|
'def',
|
|
|
|
'del',
|
|
|
|
'elif',
|
|
|
|
'else',
|
|
|
|
'except',
|
|
|
|
'exec',
|
|
|
|
'finally',
|
|
|
|
'for',
|
|
|
|
'from',
|
|
|
|
'global',
|
|
|
|
'if',
|
|
|
|
'import',
|
|
|
|
'in',
|
|
|
|
'is',
|
|
|
|
'lambda',
|
|
|
|
'not',
|
|
|
|
'or',
|
|
|
|
'pass',
|
|
|
|
'print',
|
|
|
|
'raise',
|
|
|
|
'return',
|
|
|
|
'try',
|
|
|
|
'while',
|
|
|
|
#--end keywords--
|
|
|
|
]
|
|
|
|
|
|
|
|
kwdict = {}
|
|
|
|
for keyword in kwlist:
|
|
|
|
kwdict[keyword] = 1
|
|
|
|
|
|
|
|
iskeyword = kwdict.has_key
|
|
|
|
|
|
|
|
def main():
|
2001-02-09 09:10:35 +00:00
|
|
|
import sys, re
|
1997-03-20 19:45:51 +00:00
|
|
|
|
|
|
|
args = sys.argv[1:]
|
|
|
|
iptfile = args and args[0] or "Python/graminit.c"
|
|
|
|
if len(args) > 1: optfile = args[1]
|
|
|
|
else: optfile = "Lib/keyword.py"
|
|
|
|
|
|
|
|
# scan the source file for keywords
|
1997-03-20 20:40:45 +00:00
|
|
|
fp = open(iptfile)
|
1997-10-22 21:00:49 +00:00
|
|
|
strprog = re.compile('"([^"]+)"')
|
1997-03-20 20:40:45 +00:00
|
|
|
lines = []
|
1997-03-20 19:45:51 +00:00
|
|
|
while 1:
|
|
|
|
line = fp.readline()
|
|
|
|
if not line: break
|
2001-02-09 09:10:35 +00:00
|
|
|
if line.find('{1, "') > -1:
|
1998-03-26 21:13:24 +00:00
|
|
|
match = strprog.search(line)
|
|
|
|
if match:
|
|
|
|
lines.append(" '" + match.group(1) + "',\n")
|
1997-03-20 19:45:51 +00:00
|
|
|
fp.close()
|
1997-03-20 20:40:45 +00:00
|
|
|
lines.sort()
|
1997-03-20 19:45:51 +00:00
|
|
|
|
|
|
|
# load the output skeleton from the target
|
1997-03-20 20:40:45 +00:00
|
|
|
fp = open(optfile)
|
|
|
|
format = fp.readlines()
|
|
|
|
fp.close()
|
1997-03-20 19:45:51 +00:00
|
|
|
|
1997-03-20 20:40:45 +00:00
|
|
|
# insert the lines of keywords
|
1997-03-20 19:45:51 +00:00
|
|
|
try:
|
|
|
|
start = format.index("#--start keywords--\n") + 1
|
|
|
|
end = format.index("#--end keywords--\n")
|
1997-03-20 20:40:45 +00:00
|
|
|
format[start:end] = lines
|
1997-03-20 19:45:51 +00:00
|
|
|
except ValueError:
|
|
|
|
sys.stderr.write("target does not contain format markers\n")
|
1997-03-20 20:40:45 +00:00
|
|
|
sys.exit(1)
|
1997-03-20 19:45:51 +00:00
|
|
|
|
|
|
|
# write the output file
|
1997-03-20 20:40:45 +00:00
|
|
|
fp = open(optfile, 'w')
|
2001-02-09 09:10:35 +00:00
|
|
|
fp.write(''.join(format))
|
1997-03-20 19:45:51 +00:00
|
|
|
fp.close()
|
|
|
|
|
1997-10-22 21:00:49 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|