bpo-31501: Operator precedence description for arithmetic operators (#3633)

This commit is contained in:
svelankar 2017-09-17 20:56:16 -04:00 committed by Raymond Hettinger
parent 55679e0ec7
commit 9b47af6537

View file

@ -1687,8 +1687,8 @@ precedence and have a left-to-right chaining feature as described in the
| ``+``, ``-`` | Addition and subtraction |
+-----------------------------------------------+-------------------------------------+
| ``*``, ``@``, ``/``, ``//``, ``%`` | Multiplication, matrix |
| | multiplication division, |
| | remainder [#]_ |
| | multiplication, division, floor |
| | division, remainder [#]_ |
+-----------------------------------------------+-------------------------------------+
| ``+x``, ``-x``, ``~x`` | Positive, negative, bitwise NOT |
+-----------------------------------------------+-------------------------------------+