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

Miss Islington (bot) webhook-mailer at python.org
Tue Sep 11 01:27:04 EDT 2018


https://github.com/python/cpython/commit/c9ece5f4a961d4963ed42aefa934eb20f9a7222b
commit: c9ece5f4a961d4963ed42aefa934eb20f9a7222b
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-09-10T22:27:00-07:00
summary:

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

(cherry picked from commit a37825418649873a0fa971dc7e5e6d142c124574)

Co-authored-by: Andrés Delfino <adelfino at gmail.com>

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