From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 19 Sep 2017 22:48:29 +0000 (-0700) Subject: bpo-31501: Operator precedence description for arithmetic operators (GH-3633) (GH... X-Git-Tag: v3.6.4rc1~243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e2593aa673c0347a74c4896a519e3b8cb7b55eb4;p=python bpo-31501: Operator precedence description for arithmetic operators (GH-3633) (GH-3638) (cherry picked from commit 9b47af65375fab9318e88ccb061394a36c8c6c33) --- diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index d92be975aa..ff890a815b 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -1692,8 +1692,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 | +-----------------------------------------------+-------------------------------------+