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
Create a Python specific rule or recommendation around:
Type hints and what they are for. Python 3.9 does not even throw an INFO or warn when type hints don't match, it has to be clear that type hints are not a security or robustness feature.
Why type hints don't prevent implicit conversions
Why hints must be used in combination with a tool like mypy
Why or when mypy is unable to protect against issues on a deployed system. mypy != input sanitation or validation.
Decide if its going to be a recommendation or rule after creating some content.
Create a Python specific rule or recommendation around:
Python 3.9
does not even throw anINFO
or warn when type hints don't match, it has to be clear that type hints are not a security or robustness feature.mypy
mypy
is unable to protect against issues on a deployed system.mypy != input
sanitation or validation.Decide if its going to be a recommendation or rule after creating some content.
Avoid duplication with content in #712
The text was updated successfully, but these errors were encountered: