Files
typeshed/stdlib/3/abc.pyi
2016-05-01 17:48:23 -07:00

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()