diff options
author | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 10:03:37 -0500 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2013-08-31 10:03:37 -0500 |
commit | 63c2dc2f1ffb3ec93f8fb6b97b0b909c36ecc0bf (patch) | |
tree | fcdd2feea3257e1635c210eee9b128eb9ba68028 /prequeue.py | |
parent | a6237d68257dd3bb963850c205d0ca4a1c46f88a (diff) |
docstring for prequeue.py
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 |