Index: expressions.rst =================================================================== --- expressions.rst (revision 69459) +++ expressions.rst (working copy) @@ -1277,9 +1277,9 @@ | :keyword:`not` *x* | Boolean NOT | +-----------------------------------------------+-------------------------------------+ | :keyword:`in`, :keyword:`not` :keyword:`in` | Membership tests | -+-----------------------------------------------+-------------------------------------+ +| | | | :keyword:`is`, :keyword:`is not` | Identity tests | -+-----------------------------------------------+-------------------------------------+ +| | | | ``<``, ``<=``, ``>``, ``>=``, ``<>``, ``!=``, | Comparisons | | ``==`` | | +-----------------------------------------------+-------------------------------------+ @@ -1296,25 +1296,25 @@ | ``*``, ``/``, ``%`` | Multiplication, division, remainder | +-----------------------------------------------+-------------------------------------+ | ``+x``, ``-x`` | Positive, negative | -+-----------------------------------------------+-------------------------------------+ +| | | | ``~x`` | Bitwise not | +-----------------------------------------------+-------------------------------------+ | ``**`` | Exponentiation | +-----------------------------------------------+-------------------------------------+ | ``x[index]`` | Subscription | -+-----------------------------------------------+-------------------------------------+ +| | | | ``x[index:index]`` | Slicing | -+-----------------------------------------------+-------------------------------------+ +| | | | ``x(arguments...)`` | Call | -+-----------------------------------------------+-------------------------------------+ +| | | | ``x.attribute`` | Attribute reference | +-----------------------------------------------+-------------------------------------+ | ``(expressions...)`` | Binding or tuple display | -+-----------------------------------------------+-------------------------------------+ +| | | | ``[expressions...]`` | List display | -+-----------------------------------------------+-------------------------------------+ +| | | | ``{key:datum...}`` | Dictionary display | -+-----------------------------------------------+-------------------------------------+ +| | | | ```expressions...``` | String conversion | +-----------------------------------------------+-------------------------------------+