diff options
author | yenatch <yenatch@gmail.com> | 2013-06-25 21:28:25 -0400 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-06-25 21:51:57 -0400 |
commit | 44571dc23645d4bdf7492efb236fc80c0537e460 (patch) | |
tree | d80850a1473bba2138f2f7e1aac029e9516fc963 | |
parent | 8d2df72cb8d09d7cf4ea839199ad8a50230ea6b2 (diff) |
give prequeue a reason to exist
-rw-r--r-- | prequeue.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/prequeue.py b/prequeue.py index 991db7eb8..156d3e942 100644 --- a/prequeue.py +++ b/prequeue.py @@ -1,3 +1,9 @@ +# 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 |