#15355: Mention already-executing Exception in generator docs.

Patch by Chris Jerdonek.
This commit is contained in:
R David Murray 2012-08-17 20:49:51 -04:00
parent 73b19d0b00
commit 85307b46d1
1 changed files with 9 additions and 2 deletions

View File

@ -421,8 +421,15 @@ transferred to the generator's caller.
.. index:: object: generator .. index:: object: generator
The following generator's methods can be used to control the execution of a
generator function: Generator-iterator methods
^^^^^^^^^^^^^^^^^^^^^^^^^^
This subsection describes the methods of a generator iterator. They can
be used to control the execution of a generator function.
Note that calling any of the generator methods below when the generator
is already executing raises a :exc:`ValueError` exception.
.. index:: exception: StopIteration .. index:: exception: StopIteration