Hacker News new | ask | show | jobs
by ZeKK14 1337 days ago
The typing issues are being solved through mypy: http://mypy-lang.org/

A large majority of packages are still missing typing hints, but the ecosystem is moving in the right direction on that issue.

1 comments

What’s the difference between mypy and python built in type hint?
mypy, as well as things like pylance, enforce the type hints, the interpreter ignores them during execution.