New submission from Jim Jewett:

https://docs.python.org/3/reference/expressions.html#yield-expressions

Current:
"""
When a generator function is called, it returns an iterator known as a 
generator. That generator then controls the execution of a generator function. 
The execution starts when one of the generator’s methods is called.
"""

At a minimum, that seems to be using "generator function" in two different 
ways, but I think there are other problems.

Proposed:
"""
When a generator function is called, it returns a special kind of iterator 
known as a generator. The iteration starts when one of the generator’s methods 
is called.
"""

----------
assignee: docs@python
components: Documentation, asyncio
messages: 242289
nosy: Jim.Jewett, docs@python, gvanrossum, haypo, yselivanov
priority: normal
severity: normal
status: open
title: yield expression confusion
type: enhancement

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24088>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to