diff options
author | Shantanu <12621235+hauntsaninja@users.noreply.github.com> | 2023-03-30 08:32:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 08:32:09 (GMT) |
commit | fda95aa19447fe444ac2670afbf98ec42aca0c6f (patch) | |
tree | 6260d847f176f2cba1a4f1a82589528c57d2f9eb /Doc/library | |
parent | dcd6f226d6596b25b6f4004058a67acabe012120 (diff) | |
download | cpython-fda95aa19447fe444ac2670afbf98ec42aca0c6f.zip cpython-fda95aa19447fe444ac2670afbf98ec42aca0c6f.tar.gz cpython-fda95aa19447fe444ac2670afbf98ec42aca0c6f.tar.bz2 |
gh-103099: Link mypy docs from typing.rst (#103100)
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/typing.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 08ffa03..384458d 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -41,10 +41,17 @@ For a summary of deprecated features and a deprecation timeline, please see .. seealso:: + For a quick overview of type hints, refer to + `this cheat sheet <https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html>`_. + + The "Type System Reference" section of https://mypy.readthedocs.io/ -- since + the Python typing system is standardised via PEPs, this reference should + broadly apply to most Python type checkers, although some parts may still be + specific to mypy. + The documentation at https://typing.readthedocs.io/ serves as useful reference for type system features, useful typing related tools and typing best practices. - .. _relevant-peps: Relevant PEPs |