@@ -45,15 +45,15 @@ provides backports of these new features to older versions of Python.
45
45
46
46
.. seealso ::
47
47
48
- `" Typing cheat sheet" <https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html >`_
48
+ `Typing cheat sheet <https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html >`_
49
49
A quick overview of type hints (hosted at the mypy docs)
50
50
51
- " Type System Reference" section of `the mypy docs <https://mypy.readthedocs.io/en/stable/index.html >`_
51
+ Type System Reference section of `the mypy docs <https://mypy.readthedocs.io/en/stable/index.html >`_
52
52
The Python typing system is standardised via PEPs, so this reference
53
53
should broadly apply to most Python type checkers. (Some parts may still
54
54
be specific to mypy.)
55
55
56
- `" Static Typing with Python" <https://typing.python.org/en/latest/ >`_
56
+ `Static Typing with Python <https://typing.python.org/en/latest/ >`_
57
57
Type-checker-agnostic documentation written by the community detailing
58
58
type system features, useful typing related tools and typing best
59
59
practices.
@@ -64,7 +64,7 @@ Specification for the Python Type System
64
64
========================================
65
65
66
66
The canonical, up-to-date specification of the Python type system can be
67
- found at `" Specification for the Python type system" <https://typing.python.org/en/latest/spec/index.html >`_.
67
+ found at `Specification for the Python type system <https://typing.python.org/en/latest/spec/index.html >`_.
68
68
69
69
.. _type-aliases :
70
70
@@ -2573,7 +2573,7 @@ types.
2573
2573
at runtime as soon as the class has been created. Monkey-patching
2574
2574
attributes onto a runtime-checkable protocol will still work, but will
2575
2575
have no impact on :func: `isinstance ` checks comparing objects to the
2576
- protocol. See :ref: `" What's new in Python 3.12" <whatsnew-typing-py312 >`
2576
+ protocol. See :ref: `What's new in Python 3.12 <whatsnew-typing-py312 >`
2577
2577
for more details.
2578
2578
2579
2579
0 commit comments