diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-09-19 22:48:29 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2017-09-19 22:48:29 (GMT) |
commit | e2593aa673c0347a74c4896a519e3b8cb7b55eb4 (patch) | |
tree | 9679ebd0b7217638d639faa15b344e740774885c /Doc | |
parent | aa2bda788d9874c43d70dd4ce3e0f1a24381aa66 (diff) | |
download | cpython-e2593aa673c0347a74c4896a519e3b8cb7b55eb4.zip cpython-e2593aa673c0347a74c4896a519e3b8cb7b55eb4.tar.gz cpython-e2593aa673c0347a74c4896a519e3b8cb7b55eb4.tar.bz2 |
bpo-31501: Operator precedence description for arithmetic operators (GH-3633) (GH-3638)
(cherry picked from commit 9b47af65375fab9318e88ccb061394a36c8c6c33)
Diffstat (limited to 'Doc')
-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 d92be97..ff890a8 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 | +-----------------------------------------------+-------------------------------------+ |