summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrian.quinlan <devnull@localhost>2010-02-25 09:12:12 +0000
committerbrian.quinlan <devnull@localhost>2010-02-25 09:12:12 +0000
commitd65e79dceea37af28b825ae6218e7b77a89443db (patch)
tree6d005620b178282bb77f0c611f844e271c510ad5
parent6f0c5e77f0d5d22f3a1754a3ce68bbe6cc312dc1 (diff)
downloadfutures-d65e79dceea37af28b825ae6218e7b77a89443db.tar.gz
Added a note about Executor.submit being an extensibility point
-rw-r--r--pep-3148.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/pep-3148.txt b/pep-3148.txt
index 00297b2..59460cc 100644
--- a/pep-3148.txt
+++ b/pep-3148.txt
@@ -111,6 +111,8 @@ asynchronously.
Schedules the callable to be executed as fn(*\*args*, *\*\*kwargs*) and returns
a `Future` instance representing the execution of the function.
+This is an abstract method and must be implemented by Executor subclasses.
+
`map(func, *iterables, timeout=None)`
Equivalent to map(*func*, *\*iterables*) but executed asynchronously and