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.

Author adelfino
Recipients adelfino, cheryl.sabella, docs@python, r.david.murray
Date 2018-05-11.17:57:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1526061449.49.0.682650639539.issue33459@psf.upfronthosting.co.za>
In-reply-to
Content
Ignore the previous comment.

The thing is that "tuple displays" like:

nums = (n for n in range(10))

Yield a generator expression instead of a tuple.

Also, unparenthesized "tuple displays" like 1, 2, 3 can't be used in expressions, AFAIK:

>>> if 3 == 1, 2, 3:
SyntaxError: invalid syntax

So, you end up using parenthesized expressions to use tuples in expressions. So talking about "tuple displays" in the operator precedence table doesn't make much sense to me :/

Also, if a "tuple display" doesn't yield a tuple, should it be named a "tuple display" after all?
History
Date User Action Args
2018-05-11 17:57:29adelfinosetrecipients: + adelfino, r.david.murray, docs@python, cheryl.sabella
2018-05-11 17:57:29adelfinosetmessageid: <1526061449.49.0.682650639539.issue33459@psf.upfronthosting.co.za>
2018-05-11 17:57:29adelfinolinkissue33459 messages
2018-05-11 17:57:29adelfinocreate