Commit 1be05767 authored by Ezio Melotti's avatar Ezio Melotti

#16677: merge with 3.2.

parents 34dcdee1 9f929bb7
...@@ -1303,8 +1303,8 @@ their suffixes:: ...@@ -1303,8 +1303,8 @@ their suffixes::
.. _operator-summary: .. _operator-summary:
Summary Operator precedence
======= ===================
.. index:: pair: operator; precedence .. index:: pair: operator; precedence
...@@ -1328,9 +1328,9 @@ groups from right to left). ...@@ -1328,9 +1328,9 @@ groups from right to left).
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+
| :keyword:`and` | Boolean AND | | :keyword:`and` | Boolean AND |
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+
| :keyword:`not` *x* | Boolean NOT | | :keyword:`not` ``x`` | Boolean NOT |
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+
| :keyword:`in`, :keyword:`not` :keyword:`in`, | Comparisons, including membership | | :keyword:`in`, :keyword:`not in`, | Comparisons, including membership |
| :keyword:`is`, :keyword:`is not`, ``<``, | tests and identity tests, | | :keyword:`is`, :keyword:`is not`, ``<``, | tests and identity tests, |
| ``<=``, ``>``, ``>=``, ``!=``, ``==`` | | | ``<=``, ``>``, ``>=``, ``!=``, ``==`` | |
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+
...@@ -1356,7 +1356,7 @@ groups from right to left). ...@@ -1356,7 +1356,7 @@ groups from right to left).
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+
| ``(expressions...)``, | Binding or tuple display, | | ``(expressions...)``, | Binding or tuple display, |
| ``[expressions...]``, | list display, | | ``[expressions...]``, | list display, |
| ``{key:datum...}``, | dictionary display, | | ``{key: value...}``, | dictionary display, |
| ``{expressions...}`` | set display | | ``{expressions...}`` | set display |
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment