Add abc.abstractproperty (Python 3)

This commit is contained in:
Jukka Lehtosalo
2016-02-04 15:36:51 +00:00
parent b6e1964881
commit 89ed6e92d4

View File

@@ -3,3 +3,4 @@
# Thesee definitions have special processing in type checker.
class ABCMeta: ...
abstractmethod = object()
abstractproperty = object()