From 8865baf840fb784440d3935c851b2887a0337c18 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Mon, 17 Oct 2016 12:19:10 -0400 Subject: [PATCH] Make ABCMeta inherit from type in py3 (#613) --- stdlib/3/abc.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3/abc.pyi b/stdlib/3/abc.pyi index 6b37f75e4..80287e1b3 100644 --- a/stdlib/3/abc.pyi +++ b/stdlib/3/abc.pyi @@ -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()