]> granicus.if.org Git - python/commitdiff
bpo-31501: Operator precedence description for arithmetic operators (#3633)
authorsvelankar <17737361+svelankar@users.noreply.github.com>
Mon, 18 Sep 2017 00:56:16 +0000 (20:56 -0400)
committerRaymond Hettinger <rhettinger@users.noreply.github.com>
Mon, 18 Sep 2017 00:56:16 +0000 (17:56 -0700)
Doc/reference/expressions.rst

index ddcbd5567c1ee90b9f820bbec5385637f8b26777..094b92841e219f640ecaa6d0e7393c88c27331ce 100644 (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     |
 +-----------------------------------------------+-------------------------------------+