|
|
|
|
|
by linsomniac
308 days ago
|
|
>typos no longer crash in production because the compiler checks everything. Gentle correction: Python is typed now too and you can get the benefits of typing both in your IDE (via LSP) and before deploying to production (via mypy and the like). This happens both by type inference as well as explicit type annotations. |
|
Not to mention, if a library does not or does sloppily use type annotations, you would not get reliability even with a perfect type checker.