summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-09-11 05:12:41 (GMT)
committerBenjamin Peterson <benjamin@python.org>2018-09-11 05:12:41 (GMT)
commita37825418649873a0fa971dc7e5e6d142c124574 (patch)
tree676451bc12ade741b5ace036c19ab32cd458825c
parent3666b3c1f695a145adab1bf644c22e564e8eb0ee (diff)
downloadcpython-a37825418649873a0fa971dc7e5e6d142c124574.zip
cpython-a37825418649873a0fa971dc7e5e6d142c124574.tar.gz
cpython-a37825418649873a0fa971dc7e5e6d142c124574.tar.bz2
closes bpo-33883: Mention type checkers in the FAQ. (GH-7760)
-rw-r--r--Doc/faq/programming.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index 53f3b7f..fd720c1 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?
-----------------------------------------------------------