From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 11 Sep 2018 05:27:00 +0000 (-0700) Subject: closes bpo-33883: Mention type checkers in the FAQ. (GH-7760) X-Git-Tag: v3.7.1rc1~94 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9162%2Fhead;p=thirdparty%2FPython%2Fcpython.git closes bpo-33883: Mention type checkers in the FAQ. (GH-7760) (cherry picked from commit a37825418649873a0fa971dc7e5e6d142c124574) Co-authored-by: Andrés Delfino --- 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 `_, +`Pyre `_, and +`Pytype `_ can check type hints in Python +source code. + How can I create a stand-alone binary from a Python script? -----------------------------------------------------------