[docs] [issue33459] Define "tuple display" in the docs

R. David Murray report at bugs.python.org
Thu May 10 19:36:48 EDT 2018


R. David Murray <rdmurray at bitdance.com> added the comment:

Nope, a tuple display is not equal to a parenthesized list.  For example, in:

   x = 1, 2, 3

1, 2, 3 is a tuple display.  The parenthesis are optional in that case (in the general case it is the comma that makes the tuple, not the parens).

However, as far as I can see that's the only mention of "tuple display" in the docs, which makes the doc you reference less than useful to a reader that doesn't know what it means.

----------
nosy: +r.david.murray
title: Fix "tuple display" mention in Expressions -> Define "tuple display" in the docs

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue33459>
_______________________________________


More information about the docs mailing list