summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-03-30 08:41:04 (GMT)
committerGitHub <noreply@github.com>2023-03-30 08:41:04 (GMT)
commitba755a245b4c90511da0c1c41cfdbd1a9e7bb5bd (patch)
treedbec53e522727f2ce3e22cca0da734c3b2785af2 /Doc
parent3a27be79527368804c3a1c19c5bbe07a8e8ce41e (diff)
downloadcpython-ba755a245b4c90511da0c1c41cfdbd1a9e7bb5bd.zip
cpython-ba755a245b4c90511da0c1c41cfdbd1a9e7bb5bd.tar.gz
cpython-ba755a245b4c90511da0c1c41cfdbd1a9e7bb5bd.tar.bz2
gh-103099: Link mypy docs from typing.rst (GH-103100)
(cherry picked from commit fda95aa19447fe444ac2670afbf98ec42aca0c6f) Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/typing.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 00f7796..8cf2452 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -38,6 +38,14 @@ provides backports of these new features to older versions of Python.
.. 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.