This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 'genexpr_for' in definition of 'call' in Language Reference.
Type: Stage:
Components: Documentation Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: dangyogi, georg.brandl
Priority: normal Keywords:

Created on 2008-09-21 16:16 by dangyogi, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg73513 - (view) Author: Bruce Frederiksen (dangyogi) Date: 2008-09-21 16:16
The definition of 'call' in the Language Reference refers to
'genexpr_for' which doesn't exist.  Either 'genexpr_for' should be
changed to 'comp_for' or 'expression genexpr_for' should be changed to
'comprehension'.  See the following:

http://docs.python.org/dev/3.0/reference/expressions.html#grammar-token-call
http://docs.python.org/dev/3.0/reference/expressions.html#grammar-token-comprehension

I also did not see any description if what happens if you use the
comprehension option (though I was scanning the text quickly and could
have missed it).
msg73515 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-09-21 17:03
Fixed in r66541.
History
Date User Action Args
2022-04-11 14:56:39adminsetgithub: 48173
2008-09-21 17:03:39georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg73515
2008-09-21 16:16:24dangyogicreate