]> granicus.if.org Git - python/commitdiff
bpo-31501: Operator precedence description for arithmetic operators (GH-3633) (GH...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 19 Sep 2017 22:48:29 +0000 (15:48 -0700)
committerMariatta <Mariatta@users.noreply.github.com>
Tue, 19 Sep 2017 22:48:29 +0000 (15:48 -0700)
(cherry picked from commit 9b47af65375fab9318e88ccb061394a36c8c6c33)

Doc/reference/expressions.rst

index d92be975aacef362336ff676a385bc8114591301..ff890a815b5bbe3481656730b4aabf702cdd4f84 100644 (file)
@@ -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     |
 +-----------------------------------------------+-------------------------------------+