]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
closes bpo-33883: Mention type checkers in the FAQ. (GH-7760) 9162/head
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 11 Sep 2018 05:27:00 +0000 (22:27 -0700)
committerGitHub <noreply@github.com>
Tue, 11 Sep 2018 05:27:00 +0000 (22:27 -0700)
(cherry picked from commit a37825418649873a0fa971dc7e5e6d142c124574)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
Doc/faq/programming.rst

index 53f3b7f528c065e746ea3151a94b9f291f96b4ad..fd720c1a304b0f3f5e003a8b561c6d757aeb1bd4 100644 (file)
@@ -71,6 +71,11 @@ length, whether variable names are well-formed according to your coding
 standard, whether declared interfaces are fully implemented, and more.
 https://docs.pylint.org/ provides a full list of Pylint's features.
 
+Static type checkers such as `Mypy <http://mypy-lang.org/>`_,
+`Pyre <https://pyre-check.org/>`_, and
+`Pytype <https://github.com/google/pytype>`_ can check type hints in Python
+source code.
+
 
 How can I create a stand-alone binary from a Python script?
 -----------------------------------------------------------