summaryrefslogtreecommitdiff
path: root/python2/futures/__init__.py
diff options
context:
space:
mode:
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,