add stub for stdlib abc.ABC in python 3.4+ (issue #304)

This commit is contained in:
Håken Lid
2016-06-20 16:05:57 +02:00
parent 37bc4987be
commit 569b81c42a

View File

@@ -1,4 +1,5 @@
from typing import Any
import sys
# Stubs for abc.
# Thesee definitions have special processing in type checker.
@@ -6,3 +7,7 @@ class ABCMeta:
def register(cls: "ABCMeta", subclass: Any) -> None: ...
abstractmethod = object()
abstractproperty = object()
if sys.version_info >= (3, 4):
class ABC(metaclass=ABCMeta):
pass