Add typing.ClassVar (fixes #888) (#889)

This commit is contained in:
miedzinski
2017-01-30 02:15:04 +01:00
committed by Guido van Rossum
parent 225f302135
commit d486e2a8d5
2 changed files with 2 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ Tuple = object()
Callable = object()
Type = object()
_promote = object()
ClassVar = object()
class GenericMeta(type): ...

View File

@@ -15,6 +15,7 @@ Callable = object()
Type = object()
_promote = object()
no_type_check = object()
ClassVar = object()
class GenericMeta(type): ...