Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found
in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 107
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 234
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 235
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 236
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 237
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 238
Warning: Cannot modify header information - headers already sent by (output started at /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php:1) in /home/zoomride2022/public_html/myzoomride.com/wp-includes/certificates/system.php on line 239
U
i_ @ s d Z dd ZG dd deZG dd deZG dd deZz,d d
lm Z m
Z
mZmZm
Z
mZmZmZ W n* ek
r d dlmZm Z de_Y nX G d
d deZG dd dedZdS )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/python38/lib/python3.8/abc.pyabstractmethod s r c s$ e Zd ZdZdZ fddZ ZS )abstractclassmethodztA decorator indicating abstract classmethods.
Deprecated, use 'classmethod' with 'abstractmethod' instead.
Tc s d|_ t | d S NTr super__init__selfcallable __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 fddZ 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 fddZdd Zdd Zdd ZdddZd
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" t j| |||f|}t| |S )N)r __new__r )mclsnamebases namespacekwargsclsr r r r# T s zABCMeta.__new__c C s
t | |S )z{Register a virtual subclass of an ABC.
Returns the subclass, to allow usage as a class decorator.
)r r) subclassr r r registerY s zABCMeta.registerc C s
t | |S )z'Override for isinstance(instance, cls).)r )r) instancer r r __instancecheck__` s zABCMeta.__instancecheck__c C s
t | |S )z'Override for issubclass(subclass, cls).)r r* r r r __subclasscheck__d s zABCMeta.__subclasscheck__Nc C s t d| j d| j |d t dt |d t| \}}}}t d||d t d||d t d||d t d||d d S )
z'Debug helper to print the ABC registry.zClass: .)filezInv. counter: z_abc_registry: z_abc_cache: z_abc_negative_cache: z_abc_negative_cache_version: N)printr r r r )r) r1
_abc_registry
_abc_cache_abc_negative_cache_abc_negative_cache_versionr r r _dump_registryh s
zABCMeta._dump_registryc C s t | dS )z.Clear the registry (for debugging or testing).N)r r) r r r _abc_registry_cleart s zABCMeta._abc_registry_clearc C s t | dS )z,Clear the caches (for debugging or testing).N)r r8 r r r _abc_caches_clearx s zABCMeta._abc_caches_clear)N)r r r r r# r, r. r/ r7 r9 r: r r r r r r! G s
r! c @ s e Zd ZdZdZdS )ABCzVHelper class that provides a standard way to create an ABC using
inheritance.
r N)r r r r __slots__r r r r r; } s r; ) metaclassN)r r classmethodr staticmethodr propertyr _abcr r r r r r r r ImportErrorZ_py_abcr! r typer; r r r r s
,6