summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrian.quinlan <devnull@localhost>2009-10-30 00:03:30 +0000
committerbrian.quinlan <devnull@localhost>2009-10-30 00:03:30 +0000
commit785fb8154f7ac3704fb8901d79a08d7a1fd19eb3 (patch)
tree45454b86a7bc1291d0930c8d5b8cb06371ca5451
parentcbecebd3476565c5f7682f45a59dd54b908c7aa4 (diff)
downloadfutures-785fb8154f7ac3704fb8901d79a08d7a1fd19eb3.tar.gz
Set the PEP title
-rw-r--r--PEP.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/PEP.txt b/PEP.txt
index 7669d67..6e2491d 100644
--- a/PEP.txt
+++ b/PEP.txt
@@ -1,5 +1,5 @@
PEP: XXX
-Title: Standard futures library
+Title: futures - execute computations asynchronously
Version: $Revision$
Last-Modified: $Date$
Author: Brian Quinlan <brian@sweetapp.com>
@@ -336,7 +336,7 @@ Rationale
The proposed design of this module was heavily influenced by the the Java
java.util.concurrent package [1]_. The conceptual basis of the module, as in
-Java, is the Future class, which represents the progress and results of an
+Java, is the Future class, which represents the progress and result of an
asynchronous computation. The Future class makes little commitment to the
evaluation mode being used e.g. it can be be used to represent lazy or eager
evaluation, for evaluation using threads, processes or remote procedure call.