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

This commit is contained in:
Miss Islington (bot) 2021-05-02 13:14:30 -07:00 committed by GitHub
parent 5374fbc314
commit e60b1e150d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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.