Lines Matching refs:infile
90 def make_h(infile, outfile='Include/token.h'): argument
91 tok_names, ERRORTOKEN, string_to_tok = load_tokens(infile)
102 print("%s regenerated from %s" % (outfile, infile))
161 def make_c(infile, outfile='Parser/token.c'): argument
162 tok_names, ERRORTOKEN, string_to_tok = load_tokens(infile)
186 print("%s regenerated from %s" % (outfile, infile))
197 def make_rst(infile, outfile='Doc/library/token-list.inc'): argument
198 tok_names, ERRORTOKEN, string_to_tok = load_tokens(infile)
210 print("%s regenerated from %s" % (outfile, infile))
243 def make_py(infile, outfile='Lib/token.py'): argument
244 tok_names, ERRORTOKEN, string_to_tok = load_tokens(infile)
262 print("%s regenerated from %s" % (outfile, infile))
265 def main(op, infile='Grammar/Tokens', *args): argument
267 make(infile, *args)