diff options
author | svelankar <17737361+svelankar@users.noreply.github.com> | 2017-09-18 00:56:16 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2017-09-18 00:56:16 (GMT) |
commit | 9b47af65375fab9318e88ccb061394a36c8c6c33 (patch) | |
tree | 1ece059d259bb16d977b61757d2a2569547c72fd /Doc/reference | |
parent | 55679e0ec76ee3b30ca609948f47bb02a8e0a078 (diff) | |
download | cpython-9b47af65375fab9318e88ccb061394a36c8c6c33.zip cpython-9b47af65375fab9318e88ccb061394a36c8c6c33.tar.gz cpython-9b47af65375fab9318e88ccb061394a36c8c6c33.tar.bz2 |
bpo-31501: Operator precedence description for arithmetic operators (#3633)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/expressions.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index ddcbd55..094b928 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -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 | +-----------------------------------------------+-------------------------------------+ |