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/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 88
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 215
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 216
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 217
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 218
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 219
Warning: Cannot modify header information - headers already sent by (output started at /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php:88) in /home/afelisqd/cppseducation.sc.tz/admin/images/photos/17587263121019776732_admin-dbb.php on line 220
ž
§ÿfy c @ s~ d Z d d l m Z d d „ Z Gd d „ d e ƒ Z Gd d „ d e ƒ Z Gd d
„ d
e ƒ Z Gd d „ d e
ƒ Z d
S( u3 Abstract Base Classes (ABCs) according to PEP 3119.i ( u WeakSetc C s
d | _ | S( uÞ 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.
Usage:
class C(metaclass=ABCMeta):
@abstractmethod
def my_abstract_method(self, ...):
...
T( u Trueu __isabstractmethod__( u funcobj( ( u( /opt/alt/python33/lib64/python3.3/abc.pyu abstractmethod s u abstractmethodc s2 | Ee Z d Z d Z d Z ‡ f d d † Z ‡ S( u abstractclassmethoduO
A decorator indicating abstract classmethods.
Similar to abstractmethod.
Usage:
class C(metaclass=ABCMeta):
@abstractclassmethod
def my_abstract_classmethod(cls, ...):
...
'abstractclassmethod' is deprecated. Use 'classmethod' with
'abstractmethod' instead.
c s d | _ t ƒ j | ƒ d S( NT( u Trueu __isabstractmethod__u superu __init__( u selfu callable( u __class__( u( /opt/alt/python33/lib64/python3.3/abc.pyu __init__/ s u abstractclassmethod.__init__T( u __name__u
__module__u __qualname__u __doc__u Trueu __isabstractmethod__u __init__( u
__locals__( ( u __class__u( /opt/alt/python33/lib64/python3.3/abc.pyu abstractclassmethod s u abstractclassmethodc s2 | Ee Z d Z d Z d Z ‡ f d d † Z ‡ S( u abstractstaticmethoduO
A decorator indicating abstract staticmethods.
Similar to abstractmethod.
Usage:
class C(metaclass=ABCMeta):
@abstractstaticmethod
def my_abstract_staticmethod(...):
...
'abstractstaticmethod' is deprecated. Use 'staticmethod' with
'abstractmethod' instead.
c s d | _ t ƒ j | ƒ d S( NT( u Trueu __isabstractmethod__u superu __init__( u selfu callable( u __class__( u( /opt/alt/python33/lib64/python3.3/abc.pyu __init__G s u abstractstaticmethod.__init__T( u __name__u
__module__u __qualname__u __doc__u Trueu __isabstractmethod__u __init__( u
__locals__( ( u __class__u( /opt/alt/python33/lib64/python3.3/abc.pyu abstractstaticmethod4 s u abstractstaticmethodc B s | Ee Z d Z d Z d Z d S( u abstractpropertyuk
A decorator indicating abstract properties.
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 properties are overridden.
The abstract properties can be called using any of the normal
'super' call mechanisms.
Usage:
class C(metaclass=ABCMeta):
@abstractproperty
def my_abstract_property(self):
...
This defines a read-only property; you can also define a read-write
abstract property using the 'long' form of property declaration:
class C(metaclass=ABCMeta):
def getx(self): ...
def setx(self, value): ...
x = abstractproperty(getx, setx)
'abstractproperty' is deprecated. Use 'property' with 'abstractmethod'
instead.
NT( u __name__u
__module__u __qualname__u __doc__u Trueu __isabstractmethod__( u
__locals__( ( u( /opt/alt/python33/lib64/python3.3/abc.pyu abstractpropertyL s u abstractpropertyc se | Ee Z d Z d Z d Z ‡ f d d † Z d d „ Z d
d d „ Z d d
„ Z d d „ Z
‡ S( u ABCMetaui 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()).
i c sÜ t ƒ j | | | | ƒ } d d „ | j ƒ Dƒ } xb | D]Z } xQ t | d t ƒ ƒ D]: } t | | d ƒ } t | d d ƒ rW | j | ƒ qW qW Wq; Wt | ƒ | _ t
ƒ | _ t
ƒ | _ t
ƒ | _
t j | _ | S( Nc S s. h | ]$ \ } } t | d d ƒ r | ’ q S( u __isabstractmethod__F( u getattru False( u .0u nameu value( ( u( /opt/alt/python33/lib64/python3.3/abc.pyu „ s u" ABCMeta.__new__..u __abstractmethods__u __isabstractmethod__F( u superu __new__u itemsu getattru setu Noneu Falseu addu frozensetu __abstractmethods__u WeakSetu
_abc_registryu
_abc_cacheu _abc_negative_cacheu ABCMetau _abc_invalidation_counteru _abc_negative_cache_version( u mclsu nameu basesu namespaceu clsu abstractsu baseu value( u __class__( u( /opt/alt/python33/lib64/python3.3/abc.pyu __new__ s
u ABCMeta.__new__c C sr t | t ƒ s t d ƒ ‚ n t | | ƒ r1 | St | | ƒ rO t d ƒ ‚ n | j j | ƒ t j d 7_ | S( us Register a virtual subclass of an ABC.
Returns the subclass, to allow usage as a class decorator.
u Can only register classesu' Refusing to create an inheritance cyclei ( u
isinstanceu typeu TypeErroru
issubclassu RuntimeErroru
_abc_registryu addu ABCMetau _abc_invalidation_counter( u clsu subclass( ( u( /opt/alt/python33/lib64/python3.3/abc.pyu register” s u ABCMeta.registerc C s– t d | j | j f d | ƒt d t j d | ƒxX t | j j ƒ ƒ D]A } | j d ƒ rM t | | ƒ } t d | | f d | ƒqM qM Wd S( u' Debug helper to print the ABC registry.u Class: %s.%su fileu Inv.counter: %su _abc_u %s: %rN(
u printu
__module__u __name__u ABCMetau _abc_invalidation_counteru sortedu __dict__u keysu
startswithu getattr( u clsu fileu nameu value( ( u( /opt/alt/python33/lib64/python3.3/abc.pyu _dump_registry¦ s u ABCMeta._dump_registryc s‰ | j } | ˆ j k r d St | ƒ } | | k rf ˆ j t j k rY | ˆ j k rY d Sˆ j | ƒ St
‡ f d d † | | h Dƒ ƒ S( u' Override for isinstance(instance, cls).c 3 s | ] } ˆ j | ƒ Vq d S( N( u __subclasscheck__( u .0u c( u cls( u( /opt/alt/python33/lib64/python3.3/abc.pyu ½ s u, ABCMeta.__instancecheck__..TF( u __class__u
_abc_cacheu Trueu typeu _abc_negative_cache_versionu ABCMetau _abc_invalidation_counteru _abc_negative_cacheu Falseu __subclasscheck__u any( u clsu instanceu subclassu subtype( ( u clsu( /opt/alt/python33/lib64/python3.3/abc.pyu __instancecheck__¯ s
u ABCMeta.__instancecheck__c C sa | | j k r d S| j t j k r@ t ƒ | _ t j | _ n | | j k rS d S| j | ƒ } | t k r° t
| t ƒ sƒ t ‚ | rœ | j j
| ƒ n | j j
| ƒ | S| t | d f ƒ k rÜ | j j
| ƒ d Sx4 | j D]) } t | | ƒ ræ | j j
| ƒ d Sqæ Wx7 | j ƒ D]) } t | | ƒ r | j j
| ƒ d Sq W| j j
| ƒ d S( u' Override for issubclass(subclass, cls).u __mro__TF( u
_abc_cacheu Trueu _abc_negative_cache_versionu ABCMetau _abc_invalidation_counteru WeakSetu _abc_negative_cacheu Falseu __subclasshook__u NotImplementedu
isinstanceu boolu AssertionErroru addu getattru
_abc_registryu
issubclassu __subclasses__( u clsu subclassu oku rclsu scls( ( u( /opt/alt/python33/lib64/python3.3/abc.pyu __subclasscheck__¿ s6 u ABCMeta.__subclasscheck__N( u __name__u
__module__u __qualname__u __doc__u _abc_invalidation_counteru __new__u registeru Noneu _dump_registryu __instancecheck__u __subclasscheck__( u
__locals__( ( u __class__u( /opt/alt/python33/lib64/python3.3/abc.pyu ABCMetal s u ABCMetaN( u __doc__u _weakrefsetu WeakSetu abstractmethodu classmethodu abstractclassmethodu staticmethodu abstractstaticmethodu propertyu abstractpropertyu typeu ABCMeta( ( ( u( /opt/alt/python33/lib64/python3.3/abc.pyu s