bpo-16438: Doc: confusing text regarding numeric precedence corrected (GH-10521)

This commit is contained in:
Anjali 2019-09-11 04:58:27 -05:00 committed by Julien Palard
parent 92521fea5d
commit 4576b5431b
1 changed files with 2 additions and 3 deletions

View File

@ -265,9 +265,8 @@ which is narrower than complex. Comparisons between numbers of mixed type use
the same rule. [2]_ The constructors :func:`int`, :func:`float`, and
:func:`complex` can be used to produce numbers of a specific type.
All numeric types (except complex) support the following operations, sorted by
ascending priority (all numeric operations have a higher priority than
comparison operations):
All numeric types (except complex) support the following operations (for priorities of
the operations, see :ref:`operator-summary`):
+---------------------+---------------------------------+---------+--------------------+
| Operation | Result | Notes | Full documentation |