]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-43990: Fix the footnote ordering in the operator precedence docs (GH-25805) ...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 2 May 2021 20:14:30 +0000 (13:14 -0700)
committerGitHub <noreply@github.com>
Sun, 2 May 2021 20:14:30 +0000 (13:14 -0700)
Doc/reference/expressions.rst

index 3bb3834ce09deaedb559b74f94c25416d9bac98f..8fead33efb911dd7fc985498f8f1b98101494ce3 100644 (file)
@@ -1908,8 +1908,8 @@ precedence and have a left-to-right chaining feature as described in the
    the :keyword:`is` operator, like those involving comparisons between instance
    methods, or constants.  Check their documentation for more info.
 
-.. [#] The ``%`` operator is also used for string formatting; the same
-   precedence applies.
-
 .. [#] The power operator ``**`` binds less tightly than an arithmetic or
    bitwise unary operator on its right, that is, ``2**-1`` is ``0.5``.
+
+.. [#] The ``%`` operator is also used for string formatting; the same
+   precedence applies.