summaryrefslogtreecommitdiffstats
path: root/Lib/concurrent
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 21:57:08 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 21:57:08 (GMT)
commitc30b7b16ea03ad094917615940cd1a9ef53c4904 (patch)
tree6c3f56533f33d2be19d9bf1cc7bc659eb005959b /Lib/concurrent
parent0158af38b73b76516f18b1774e1c590f459cb188 (diff)
downloadcpython-c30b7b16ea03ad094917615940cd1a9ef53c4904.zip
cpython-c30b7b16ea03ad094917615940cd1a9ef53c4904.tar.gz
cpython-c30b7b16ea03ad094917615940cd1a9ef53c4904.tar.bz2
Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Lib/concurrent')
-rw-r--r--Lib/concurrent/futures/_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/concurrent/futures/_base.py b/Lib/concurrent/futures/_base.py
index 9f11f69..7929c3c 100644
--- a/Lib/concurrent/futures/_base.py
+++ b/Lib/concurrent/futures/_base.py
@@ -519,7 +519,7 @@ class Executor(object):
"""Returns a iterator equivalent to map(fn, iter).
Args:
- fn: A callable that will take take as many arguments as there are
+ fn: A callable that will take as many arguments as there are
passed iterables.
timeout: The maximum number of seconds to wait. If None, then there
is no limit on the wait time.