[Python-checkins] closes bpo-33883: Mention type checkers in the FAQ. (GH-7760)

Benjamin Peterson webhook-mailer at python.org
Tue Sep 11 01:12:45 EDT 2018


https://github.com/python/cpython/commit/a37825418649873a0fa971dc7e5e6d142c124574
commit: a37825418649873a0fa971dc7e5e6d142c124574
branch: master
author: Andrés Delfino <adelfino at gmail.com>
committer: Benjamin Peterson <benjamin at python.org>
date: 2018-09-10T22:12:41-07:00
summary:

closes bpo-33883: Mention type checkers in the FAQ. (GH-7760)

files:
M Doc/faq/programming.rst

diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 53f3b7f528c0..fd720c1a304b 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -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?
 -----------------------------------------------------------



More information about the Python-checkins mailing list