⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.231
Server IP:
97.74.87.16
Server:
Linux 16.87.74.97.host.secureserver.net 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
alt
/
python311
/
lib64
/
python3.11
/
__pycache__
/
View File Name :
abc.cpython-311.pyc
� ��I���Y� � � d Z d� Z G d� de� � Z G d� de� � Z G d� de� � Z dd lm Z m Z mZmZm Z mZmZmZ G d � de� � Zn# e$ r ddlmZm Z d e_ Y nw xY wd� Z G d� de�� � ZdS )z3Abstract Base Classes (ABCs) according to PEP 3119.c � � d| _ | S )aI 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, arg1, arg2, argN): ... T)�__isabstractmethod__)�funcobjs �*/opt/alt/python311/lib64/python3.11/abc.py�abstractmethodr s � �"