[Python-checkins] cpython (3.4): Issue 24088: Clarify semantics of yield expression.

guido.van.rossum python-checkins at python.org
Tue May 5 21:03:47 CEST 2015


https://hg.python.org/cpython/rev/b87d96e0708e
changeset:   95882:b87d96e0708e
branch:      3.4
parent:      95873:71ec881d8347
user:        Guido van Rossum <guido at python.org>
date:        Tue May 05 12:02:01 2015 -0700
summary:
  Issue 24088: Clarify semantics of yield expression.

files:
  Doc/reference/expressions.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -325,7 +325,7 @@
 expression in a function's body causes that function to be a generator.
 
 When a generator function is called, it returns an iterator known as a
-generator.  That generator then controls the execution of a generator function.
+generator.  That generator then controls the execution of the generator function.
 The execution starts when one of the generator's methods is called.  At that
 time, the execution proceeds to the first yield expression, where it is
 suspended again, returning the value of :token:`expression_list` to the generator's

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list