diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 10:17:25 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 10:17:25 -0500 |
commit | ba67d3ba4675ed4f4a918264707788f9c4979c9b (patch) | |
tree | c7a3065394032d748bdf4808582df57b850de88e /prequeue.py | |
parent | ebb591a7ec624acce35d0378201c641724ac8d4c (diff) | |
parent | 5118fb757879f7ccf177b7d84582d85c6dd5d14c (diff) |
Merge branch 'master' into preprocessor-asserts
Diffstat (limited to 'prequeue.py')
-rw-r--r-- | prequeue.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/prequeue.py b/prequeue.py index c9a9a8bcc..ec6cd9e39 100644 --- a/prequeue.py +++ b/prequeue.py @@ -1,8 +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. +""" +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 |