python 3 python PEP 3017. Fast-forward python 3.5 PEP 0484 , typing, .
from typing import Iterator
def fib(n: int) -> Iterator[int]:
a, b = 0, 1
while a < n:
yield a
a, b = b, a + b
https://pawelmhm.imtqy.com
484 :
__annotations__, . . , linter. , JIT , .)
, python " ", , .. , python , , . , , , , .
python mypy, , , . examples, .