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/2866/usr/lib/python3.8/__pycache__/ |
Upload File : |
U
�ʦi� � @ s� d Z dd� ZG dd� de�ZG dd� de�ZG dd� de�Zz,d d
lm Z m
Z
mZmZm
Z
mZmZmZ W n* ek
r� d dlmZm Z de_Y nX G d
d� de�ZG dd� ded�ZdS )z3Abstract Base Classes (ABCs) according to PEP 3119.c C s
d| _ | S )a< A decorator indicating abstract methods.
Requires that the metaclass is ABCMeta or derived from it. A
class that has a metaclass derived from ABCMeta cannot be
instantiated unless all of its abstract methods are overridden.
The abstract methods can be called using any of the normal
'super' call mechanisms. abstractmethod() may be used to declare
abstract methods for properties and descriptors.
Usage:
class C(metaclass=ABCMeta):
@abstractmethod
def my_abstract_method(self, ...):
...
T)�__isabstractmethod__)�funcobj� r �/usr/lib/python3.8/abc.py�abstractmethod s r c s$ e Zd ZdZdZ� fdd�Z� ZS )�abstractclassmethodztA decorator indicating abstract classmethods.
Deprecated, use 'classmethod' with 'abstractmethod' instead.
Tc s d|_ t� �|� d S �NT�r �super�__init__��self�callable�� __class__r r r
$ s zabstractclassmethod.__init__��__name__�
__module__�__qualname__�__doc__r r
�
__classcell__r r r r r s r c s$ e Zd ZdZdZ� fdd�Z� ZS )�abstractstaticmethodzvA decorator indicating abstract staticmethods.
Deprecated, use 'staticmethod' with 'abstractmethod' instead.
Tc s d|_ t� �|� d S r r r r r r r
1 s zabstractstaticmethod.__init__r r r r r r ) s r c @ s e Zd ZdZdZdS )�abstractpropertyzoA decorator indicating abstract properties.
Deprecated, use 'property' with 'abstractmethod' instead.
TN)r r r r r r r r r r 6 s r � )�get_cache_token� _abc_init�
_abc_register�_abc_instancecheck�_abc_subclasscheck� _get_dump�_reset_registry�
_reset_caches)�ABCMetar �abcc sR e Zd ZdZ� fdd�Zdd� Zdd� Zdd � Zddd�Zd
d� Z dd� Z
� ZS )r! a� Metaclass for defining Abstract Base Classes (ABCs).
Use this metaclass to create an ABC. An ABC can be subclassed
directly, and then acts as a mix-in class. You can also register
unrelated concrete classes (even built-in classes) and unrelated
ABCs as 'virtual subclasses' -- these and their descendants will
be considered subclasses of the registering ABC by the built-in
issubclass() function, but the registering ABC won't show up in
their MRO (Method Resolution Order) nor will method
implementations defined by the registering ABC be callable (not
even via super()).
c s"