✏️ 正在编辑: abc.cpython-312.opt-1.pyc
路径:
/lib64/python3.12/__pycache__/abc.cpython-312.opt-1.pyc
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
� �֦i� � �� � 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� Zd� Z G d� de�� Zy# e$ r ddlmZm Z d e_ Y �&w xY w)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 �/usr/lib64/python3.12/abc.py�abstractmethodr s � �"