summaryrefslogtreecommitdiff
path: root/python2/futures/_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'python2/futures/_base.py')
-rw-r--r--python2/futures/_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/python2/futures/_base.py b/python2/futures/_base.py
index 4c50064..bec7212 100644
--- a/python2/futures/_base.py
+++ b/python2/futures/_base.py
@@ -545,7 +545,7 @@ class Executor(object):
RETURN_IMMEDIATELY - Return without waiting.
Returns:
- A FuturesList containing futures for the given calls.
+ A FutureList containing Futures for the given calls.
"""
raise NotImplementedError()
@@ -580,7 +580,7 @@ class Executor(object):
else:
yield future.result(end_time - time.time())
except Exception, e:
- # Python 2.4 and earlier didn't allow yield statements in
+ # Python 2.4 and earlier don't allow yield statements in
# try/finally blocks
try:
fs.cancel(timeout=0)