From: Ezio Melotti Date: Tue, 25 Dec 2012 13:45:15 +0000 (+0200) Subject: #16677: rename section header and fix markup. X-Git-Tag: v2.7.5~109^2~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4268b3a751bb94da6bc2438a17c26cc3f88e32a8;p=thirdparty%2FPython%2Fcpython.git #16677: rename section header and fix markup. --- diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index bc9f1b4b3a87..e5955bfa5559 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -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 | +-----------------------------------------------+-------------------------------------+