Skip to content

Commit 8f48619

Browse files
committed
Add typing.ClassVar (fixes #888)
1 parent 6d1edb2 commit 8f48619

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/3/typing.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ Type = object()
1616
_promote = object()
1717
no_type_check = object()
1818

19+
if sys.version_info >= (3, 5):
20+
ClassVar = object()
21+
1922
class GenericMeta(type): ...
2023

2124
# Type aliases and type constructors

0 commit comments

Comments
 (0)