Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ provides backports of these new features to older versions of Python.
should broadly apply to most Python type checkers. (Some parts may still
be specific to mypy.)

`"Static Typing with Python" <https://typing.readthedocs.io/en/latest/>`_
`"Static Typing with Python" <https://typing.python.org/en/latest/>`_
Type-checker-agnostic documentation written by the community detailing
type system features, useful typing related tools and typing best
practices.
Expand All @@ -64,7 +64,7 @@ Specification for the Python Type System
========================================

The canonical, up-to-date specification of the Python type system can be
found at `"Specification for the Python type system" <https://typing.readthedocs.io/en/latest/spec/index.html>`_.
found at `"Specification for the Python type system" <https://typing.python.org/en/latest/spec/index.html>`_.

.. _type-aliases:

Expand Down Expand Up @@ -2814,7 +2814,7 @@ Functions and decorators

.. seealso::
`Unreachable Code and Exhaustiveness Checking
<https://typing.readthedocs.io/en/latest/guides/unreachable.html>`__ has more
<https://typing.python.org/en/latest/guides/unreachable.html>`__ has more
information about exhaustiveness checking with static typing.

.. versionadded:: 3.11
Expand Down
Loading