diff options
author | Tim Dickson <dickson.tim@gmail.com> | 2018-11-02 22:19:12 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2018-11-03 07:46:44 +0700 |
commit | affa13c8b0242c96cb9a788b878dde3d13b27adf (patch) | |
tree | e202a72e86e4cdd8e0dd7e6e2f9b89a7a56afde2 /python/mypy/README | |
parent | 3a76793e3b104f4179a46ba21513f46071da097d (diff) |
python/mypy: Added (an optional static type checker for python).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'python/mypy/README')
-rw-r--r-- | python/mypy/README | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/mypy/README b/python/mypy/README new file mode 100644 index 0000000000000..585ec07be6531 --- /dev/null +++ b/python/mypy/README @@ -0,0 +1,7 @@ +Mypy is an optional static type checker for Python. You can add type hints +(PEP 484) to your Python programs, and use mypy to type check them +statically. Find bugs in your programs without even running them! + +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. |