erg/crates/erg_compiler/lib/pystd/abc.d.er
Shunsuke Shibayama a84c7854ea Create abc.d.er
2023-05-04 12:43:21 +09:00

12 lines
406 B
Python

.abstructmethod: |F <: GenericCallable|(F) -> F
.abstructclassmethod: |F <: GenericCallable|(F) -> F
.abstructstaticmethod: |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