[Python-checkins] peps: Slight wording change suggested by Steve Dower.

guido.van.rossum python-checkins at python.org
Sat Dec 15 00:49:34 CET 2012


http://hg.python.org/peps/rev/c0a1b22c92ab
changeset:   4612:c0a1b22c92ab
user:        Guido van Rossum <guido at google.com>
date:        Fri Dec 14 15:49:29 2012 -0800
summary:
  Slight wording change suggested by Steve Dower.

files:
  pep-3156.txt |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/pep-3156.txt b/pep-3156.txt
--- a/pep-3156.txt
+++ b/pep-3156.txt
@@ -154,7 +154,7 @@
 
 - ``run()``.  Runs the event loop until there is nothing left to do.
   This means, in particular:
-  
+
   - No more calls scheduled with ``call_later()`` (except for canceled
     calls).
 
@@ -720,8 +720,8 @@
 You may ask, why not convert all coroutines to Tasks?  The
 ``@tulip.coroutine`` decorator could do this.  This would slow things
 down considerably in the case where one coroutine calls another (and
-so on), as waiting for a "bare" coroutine has much less overhead than
-waiting for a Future.
+so on), as switching to a "bare" coroutine has much less overhead than
+switching to a Task.
 
 The Scheduler
 -------------

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list