shell bypass 403
l
��bc @ s� d Z d d l m Z m Z m Z d d d d d g Z Gd � d d e �Z Gd
� d e � Z e j e � Gd � d e � Z
e
j e � Gd � d e
� Z Gd
� d e � Z
e
j e � d S( u~ Abstract Base Classes (ABCs) for numbers, according to PEP 3141.
TODO: Fill out more detailed documentation on the operators.i ( u ABCMetau abstractmethodu abstractpropertyu Numberu Complexu Realu Rationalu Integralc B s | Ee Z d Z d Z d Z d S( u� 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( ( u __name__u
__module__u __doc__u __slots__u Noneu __hash__( u
__locals__( ( u. /usr/local/python-3.2/lib/python3.2/numbers.pyu Number s
u metaclassc B s. | Ee Z d Z d Z e d � � Z d � Z e d � � Z e d � � Z e d � � Z
e d � � Z e d � � Z e d � � Z
d � Z d
� Z e d � � Z e d � � Z e d
� � Z e d � � Z e d � � Z e d � � Z e d � � Z e d � � Z e d � � Z d � Z d S( ua 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 heterogenous arguments, and doesn't have special
knowledge about them, it should fall back to the builtin complex
type as described below.
c C s d S( u<