diff options
| author | brian.quinlan <devnull@localhost> | 2009-08-01 12:42:06 +0000 |
|---|---|---|
| committer | brian.quinlan <devnull@localhost> | 2009-08-01 12:42:06 +0000 |
| commit | 5c17fb5555133ac54f8aafd4dbe018c8fbb3705d (patch) | |
| tree | 5a0d9e82835ee4eb3d5416ddc29ffa82e0834530 /python3 | |
| parent | be7ec665c27064fd4de3a1bbd129a68acbc4b28d (diff) | |
| download | futures-5c17fb5555133ac54f8aafd4dbe018c8fbb3705d.tar.gz | |
Added a single doc string
Diffstat (limited to 'python3')
| -rw-r--r-- | python3/futures/_base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python3/futures/_base.py b/python3/futures/_base.py index 72d76ee..01cbf64 100644 --- a/python3/futures/_base.py +++ b/python3/futures/_base.py @@ -403,6 +403,7 @@ class FutureList(object): states[FINISHED])) class Executor(object): + """THis is an abstract base class for conrete asynchronous executors.""" def run_to_futures(self, calls, timeout=None, return_when=ALL_COMPLETED): """Return a list of futures representing the given calls. |
