a
´ib( ã @ s� d Z ddlmZmZ g d¢ZG dd„ ded�ZG dd„ deƒZe e¡ G d d
„ d
eƒZ e e
¡ G dd„ de ƒZG d
d„ deƒZe e
¡ dS )z~Abstract Base Classes (ABCs) for numbers, according to PEP 3141.
TODO: Fill out more detailed documentation on the operators.é )ÚABCMetaÚabstractmethod)ÚNumberÚComplexÚRealÚRationalÚIntegralc @ s e Zd ZdZdZdZdS )r zŸAll numbers inherit from this class.
If you just want to check if an argument x is a number, without
caring what kind, use isinstance(x, Number).
© N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú __slots__Ú__hash__r r r ú/usr/lib64/python3.9/numbers.pyr s r )Ú metaclassc @ sô e Zd ZdZdZedd„ ƒZdd„ Zeedd„ ƒƒZ eed d
„ ƒƒZ
edd„ ƒZed
d„ ƒZedd„ ƒZ
edd„ ƒZdd„ Zdd„ Zedd„ ƒZedd„ ƒZedd„ ƒZedd„ ƒZedd „ ƒZed!d"„ ƒZed#d$„ ƒZed%d&„ ƒZed'd(„ ƒZd)S )*r af Complex defines the operations that work on the builtin complex type.
In short, those are: a conversion to complex, .real, .imag, +, -,
*, /, **, abs(), .conjugate, ==, and !=.
If it is given heterogeneous arguments, and doesn't have special
knowledge about them, it should fall back to the builtin complex
type as described below.
r c C s dS )z