summaryrefslogtreecommitdiff
path: root/prequeue.py
blob: 2c8f4cf5a0009a7c7533cd92c07d370039a1e4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# coding: utf-8
"""
Starting a new python process to preprocess each source file creates too much
overhead. Instead, a list of files to preprocess is fed into a script run from
a single process.
"""

import os
import sys
import preprocessor

if __name__ == '__main__':
    for source in sys.argv[1:]:
        dest = os.path.splitext(source)[0] + '.tx'
        sys.stdin  = open(source, 'r')
        sys.stdout = open(dest, 'w')
        preprocessor.preprocess(preprocessor.load_pokecrystal_macros())