Make ABCMeta inherit from type in py3 (#613)

This commit is contained in:
Calen Pennington
2016-10-17 12:19:10 -04:00
committed by Guido van Rossum
parent 8d1026cade
commit 8865baf840

View File

@@ -3,7 +3,7 @@ import sys
# Stubs for abc.
# Thesee definitions have special processing in type checker.
class ABCMeta:
class ABCMeta(type):
def register(cls: "ABCMeta", subclass: Any) -> None: ...
abstractmethod = object()
abstractproperty = object()