summaryrefslogtreecommitdiff
path: root/python2/futures/__init__.py
diff options
context:
space:
mode:
authorbrian.quinlan <devnull@localhost>2009-06-14 15:09:00 +0000
committerbrian.quinlan <devnull@localhost>2009-06-14 15:09:00 +0000
commitdfcd0a3976b4469c0fb97e55dbd3fe613ca4f8be (patch)
tree0f8018352f7a664b65faa2c21c938cc8d54dbb63 /python2/futures/__init__.py
parent494b2789bbc092d057fa61001e7d133c8922f34f (diff)
downloadfutures-dfcd0a3976b4469c0fb97e55dbd3fe613ca4f8be.tar.gz
Some style fixes and documentation improvements.
Diffstat (limited to 'python2/futures/__init__.py')
-rw-r--r--python2/futures/__init__.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/python2/futures/__init__.py b/python2/futures/__init__.py
index 22f10db..27a5720 100644
--- a/python2/futures/__init__.py
+++ b/python2/futures/__init__.py
@@ -1,3 +1,9 @@
+# Copyright 2009 Brian Quinlan. All Rights Reserved. See LICENSE file.
+
+"""Execute computations asynchronously using threads or processes."""
+
+__author__ = 'Brian Quinlan (brian@sweetapp.com)'
+
from futures._base import (FIRST_COMPLETED, FIRST_EXCEPTION,
ALL_COMPLETED, RETURN_IMMEDIATELY,
CancelledError, TimeoutError,