bpo-43990: Fix the footnote ordering in the operator precedence docs (GH-25805)

Footnotes 5 and 6 were in the wrong order.
This commit is contained in:
Zackery Spytz 2021-05-02 10:29:15 -07:00 committed by GitHub
parent a5eabc9a39
commit 7d2b83e9f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -1920,8 +1920,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.