mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
9 lines
233 B
Python
9 lines
233 B
Python
from typing import Any
|
|
# Stubs for abc.
|
|
|
|
# Thesee definitions have special processing in type checker.
|
|
class ABCMeta:
|
|
def register(cls: "ABCMeta", subclass: Any) -> None: ...
|
|
abstractmethod = object()
|
|
abstractproperty = object()
|