]> granicus.if.org Git - python/commitdiff
#16677: rename section header and fix markup.
authorEzio Melotti <ezio.melotti@gmail.com>
Tue, 25 Dec 2012 13:45:15 +0000 (15:45 +0200)
committerEzio Melotti <ezio.melotti@gmail.com>
Tue, 25 Dec 2012 13:45:15 +0000 (15:45 +0200)
Doc/reference/expressions.rst

index bc9f1b4b3a87f0953bbe787ad97efcba4342a5b3..e5955bfa5559be61a5fd8d38366d88597a2cfcfe 100644 (file)
@@ -1339,8 +1339,8 @@ their suffixes::
 
 .. _operator-summary:
 
-Summary
-=======
+Operator precedence
+===================
 
 .. index:: pair: operator; precedence
 
@@ -1363,9 +1363,9 @@ groups from right to left).
 +-----------------------------------------------+-------------------------------------+
 | :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,           |
 | ``<=``, ``>``, ``>=``, ``<>``, ``!=``, ``==`` |                                     |
 +-----------------------------------------------+-------------------------------------+
@@ -1391,7 +1391,7 @@ groups from right to left).
 +-----------------------------------------------+-------------------------------------+
 | ``(expressions...)``,                         | Binding or tuple display,           |
 | ``[expressions...]``,                         | list display,                       |
-| ``{key:datum...}``,                           | dictionary display,                 |
+| ``{key: value...}``,                          | dictionary display,                 |
 | ```expressions...```                          | string conversion                   |
 +-----------------------------------------------+-------------------------------------+