Add some tests for python3.

This commit is contained in:
Dave Halter
2017-06-28 18:24:58 +02:00
parent e47c9d72fa
commit a3129ad8ef
2 changed files with 22 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python3
from typing import ClassVar, List
# Annotated function (Issue #29)
def foo(x: int) -> int:
return x + 1
# Annotated variables #575
CONST: int = 42
class Class:
cls_var: ClassVar[str]
def m(self):
xs: List[int] = []