#16677: rename section header and fix markup.

This commit is contained in:
Ezio Melotti 2012-12-25 15:45:15 +02:00
parent 2380feeff8
commit 4268b3a751
1 changed files with 5 additions and 5 deletions

View File

@ -1339,8 +1339,8 @@ their suffixes::
.. _operator-summary: .. _operator-summary:
Summary Operator precedence
======= ===================
.. index:: pair: operator; precedence .. index:: pair: operator; precedence
@ -1363,9 +1363,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, |
| ``<=``, ``>``, ``>=``, ``<>``, ``!=``, ``==`` | | | ``<=``, ``>``, ``>=``, ``<>``, ``!=``, ``==`` | |
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+
@ -1391,7 +1391,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...``` | string conversion | | ```expressions...``` | string conversion |
+-----------------------------------------------+-------------------------------------+ +-----------------------------------------------+-------------------------------------+