bpo-33459: Fix "tuple displays" term in Expressions.rst (GH-6760) (GH-15940)

https://bugs.python.org/issue33459

Automerge-Triggered-By: @matrixise
(cherry picked from commit dc26997109)

Co-authored-by: Andre Delfino <adelfino@gmail.com>
This commit is contained in:
Miss Islington (bot) 2019-09-11 06:38:17 -07:00 committed by Stéphane Wirtel
parent d1d968d45d
commit 4d2babd990
1 changed files with 4 additions and 4 deletions

View File

@ -148,9 +148,8 @@ immutable, the same rules as for literals apply (i.e., two occurrences of the em
tuple may or may not yield the same object).
.. index::
single: comma; tuple display
pair: tuple; display
single: , (comma); tuple display
single: comma
single: , (comma)
Note that tuples are not formed by the parentheses, but rather by use of the
comma operator. The exception is the empty tuple, for which parentheses *are*
@ -1822,7 +1821,8 @@ precedence and have a left-to-right chaining feature as described in the
| ``x[index]``, ``x[index:index]``, | Subscription, slicing, |
| ``x(arguments...)``, ``x.attribute`` | call, attribute reference |
+-----------------------------------------------+-------------------------------------+
| ``(expressions...)``, | Binding or tuple display, |
| ``(expressions...)``, | Binding or parenthesized |
| | expression, |
| ``[expressions...]``, | list display, |
| ``{key: value...}``, | dictionary display, |
| ``{expressions...}`` | set display |