erg/crates/erg_compiler/lib/pystd/abc.d.er
Lionel H 2d8a673fee fix(erg_compiler): fix typo in abc.d.er
s/abstruct/abstract/g

Because abstruct does not exists in Python ;)

Signed-off-by: Lionel H <lionel.hubaut@dekimo.com>
2024-07-08 11:07:27 +02:00

12 lines
406 B
Python

.abstractmethod: |F <: GenericCallable|(F) -> F
.abstractclassmethod: |F <: GenericCallable|(F) -> F
.abstractstaticmethod: |F <: GenericCallable|(F) -> F
.ABCMeta: ClassType
.ABCMeta <: Type
.ABCMeta.
__instancecheck__: (self: .ABCMeta, instance: Obj) -> Bool
__subclasscheck__: (self: .ABCMeta, subclass: Type) -> Bool
register: (self: .ABCMeta, subclass: Type) -> NoneType
.ABC: ClassType