Uname:
Linux gra108.truehost.cloud 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software:
LiteSpeed
PHP version:
8.2.26 [ PHP INFO ] PHP os:
Linux
Server Ip:
87.98.244.154
Your Ip:
18.116.80.68
User:
pumpbmko (2127) | Group:
pumpbmko (2132)
Safe Mode:
OFF
Disable Function:
allow_url_fopen, show_source, system, shell_exec, passthru, exec, phpinfo, mail, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apallow_url_fopen,show_source, system, shell_exec, passthru, exec, phpinfo, mail, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, ap
�
zfc @ s� d Z d d l m Z d d l m Z m Z m Z d d d d d g Z d e f d � � YZ d e f d
� � YZ
e
j e � d e
f d � � YZ
e
j e � d e
f d � � YZ d e f d
� � YZ e j e � e j e � d S( s~ Abstract Base Classes (ABCs) for numbers, according to PEP 3141.
TODO: Fill out more detailed documentation on the operators.i����( t division( t ABCMetat abstractmethodt abstractpropertyt Numbert Complext Realt Rationalt Integralc B s e Z d Z e Z d Z d Z RS( s� 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( t __name__t
__module__t __doc__R t
__metaclass__t __slots__t Nonet __hash__( ( ( s /usr/lib64/python2.7/numbers.pyR
s c B sF e 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 e d � � Z e d � � Z d � Z RS( sa 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( s<