You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was listening to a Python coding standards talk today and there was a lot of discussion of typing in 3.x, mypy, and other related tools. This obviously introduces a slew of style questions -- off the top of my head:
should you introduce typing to a project, even if it mixes typed and non-typed code?
should you use mypy or similar type checkers as a standard part of a Python linting process, akin to using flake8?
how should the documentation advice (with reST and Sphinx etc.) be revised now that type annotations can be used directly on the code?
The text was updated successfully, but these errors were encountered:
I was listening to a Python coding standards talk today and there was a lot of discussion of
typing
in 3.x,mypy
, and other related tools. This obviously introduces a slew of style questions -- off the top of my head:typing
to a project, even if it mixes typed and non-typed code?mypy
or similar type checkers as a standard part of a Python linting process, akin to usingflake8
?The text was updated successfully, but these errors were encountered: