2020-06-22 18:07:37 +02:00
|
|
|
Mypy is an optional static type checker for Python. You can add type
|
2020-09-03 13:10:01 +02:00
|
|
|
hints (PEP 484) to your Python programs, and use mypy to type check
|
|
|
|
them statically. Find bugs in your programs without even running them!
|
2018-11-02 23:19:12 +01:00
|
|
|
|
|
|
|
You can mix dynamic and static typing in your programs. You can always
|
|
|
|
fall back to dynamic typing when static typing is not convenient, such
|
|
|
|
as for legacy code.
|
2020-06-22 18:07:37 +02:00
|
|
|
This (source) is downloaded from pypi.org/projects/mypy as the mypi
|
|
|
|
github site does not have a complete sourcecode zip.
|