[Python-checkins] r78396 - peps/trunk/pep-3148.txt
guido.van.rossum
python-checkins at python.org
Wed Feb 24 00:28:27 CET 2010
Author: guido.van.rossum
Date: Wed Feb 24 00:28:27 2010
New Revision: 78396
Log:
Fix bad quote.
Modified:
peps/trunk/pep-3148.txt
Modified: peps/trunk/pep-3148.txt
==============================================================================
--- peps/trunk/pep-3148.txt (original)
+++ peps/trunk/pep-3148.txt Wed Feb 24 00:28:27 2010
@@ -244,7 +244,7 @@
Returns an iterator over the Future instances given by *fs* that yields futures
as they complete (finished or were cancelled). Any futures that completed
before `as_completed()` was called will be yielded first. The returned iterator
-raises a `TimeoutError` if `__next__()` is called and the result isnÕt available
+raises a `TimeoutError` if `__next__()` is called and the result isn't available
after *timeout* seconds from the original call to `as_completed()`. If
*timeout* is not specified or `None` then there is no limit to the wait time.
More information about the Python-checkins
mailing list