Create abc.d.er

This commit is contained in:
Shunsuke Shibayama 2023-05-04 12:40:14 +09:00
parent b13a09f1c4
commit a84c7854ea
2 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,12 @@
.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