Add basic yield from type inference. References #647.

This commit is contained in:
Dave Halter
2016-07-09 02:33:56 +02:00
parent 5280f567f9
commit e0cb1346e1
4 changed files with 43 additions and 6 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ class Employee:
# The typing library is not installable for Python 2.6, therefore ignore the
# following tests.
# python > 2.6
# python >= 2.7
from typing import List
x = [] # type: List[Employee]