Server IP : 162.213.251.212 / Your IP : 3.145.102.112 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/alt/python310/lib64/python3.10/__pycache__/ |
Upload File : |
o �?Ogz � @ s� d Z dd� ZG dd� de�ZG dd� de�ZG dd� de�Zzd d lm Z m Z mZmZm Z mZmZmZ W n eyH d dlmZm Z de_Y n w G d d� de�Zdd� 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 �*/opt/alt/python310/lib64/python3.10/abc.py�abstractmethod s r c �$ e Zd ZdZdZ� fdd�Z� ZS )�abstractclassmethoda A decorator indicating abstract classmethods. Deprecated, use 'classmethod' with 'abstractmethod' instead: class C(ABC): @classmethod @abstractmethod def my_abstract_classmethod(cls, ...): ... Tc � d|_ t� �|� d S �NT�r �super�__init__��self�callable�� __class__r r r + � zabstractclassmethod.__init__��__name__� __module__�__qualname__�__doc__r r � __classcell__r r r r r � r c r )�abstractstaticmethoda A decorator indicating abstract staticmethods. Deprecated, use 'staticmethod' with 'abstractmethod' instead: class C(ABC): @staticmethod @abstractmethod def my_abstract_staticmethod(...): ... Tc r r r r r r r r ? r zabstractstaticmethod.__init__r r r r r r 0 r r c @ � e Zd ZdZdZdS )�abstractpropertyz�A decorator indicating abstract properties. Deprecated, use 'property' with 'abstractmethod' instead: class C(ABC): @property @abstractmethod def my_abstract_property(self): ... TN)r r r r r r r r r r D 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&