#! /usr/libexec/platform-python
"""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:
__all__ = ["iskeyword", "kwlist"]
iskeyword = frozenset(kwlist).__contains__
iptfile = args and args[0] or "Python/graminit.c"
if len(args) > 1: optfile = args[1]
else: optfile = "Lib/keyword.py"
# load the output skeleton from the target, taking care to preserve its
with open(optfile, newline='') as fp:
nl = format[0][len(format[0].strip()):] if format else '\n'
# scan the source file for keywords
with open(iptfile) as fp:
strprog = re.compile('"([^"]+)"')
match = strprog.search(line)
lines.append(" '" + match.group(1) + "'," + nl)
# insert the lines of keywords into the skeleton
start = format.index("#--start keywords--" + nl) + 1
end = format.index("#--end keywords--" + nl)
format[start:end] = lines
sys.stderr.write("target does not contain format markers\n")
with open(optfile, 'w', newline='') as fp:
if __name__ == "__main__":