mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
define slots on abc.ABC (#10730)
This commit is contained in:
@@ -40,7 +40,8 @@ class abstractstaticmethod(staticmethod[_P, _R_co]):
|
||||
class abstractproperty(property):
|
||||
__isabstractmethod__: Literal[True]
|
||||
|
||||
class ABC(metaclass=ABCMeta): ...
|
||||
class ABC(metaclass=ABCMeta):
|
||||
__slots__ = ()
|
||||
|
||||
def get_cache_token() -> object: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user