From b3b59e97f3279ceca7006601181ecced28a4a1aa Mon Sep 17 00:00:00 2001 From: Jake Lishman Date: Mon, 14 Aug 2023 22:11:58 +0100 Subject: [PATCH] Add Python standard library to Intersphinx mapping (#10523) This is good for the resolution of just over 200 failed Sphinx references, almost all of which are from Sphinx attempting to insert links in type hints. Those aren't super important, but it's nice in the vein of being able to use Sphinx's `nitpicky` mode to find places where we have Sphinx references that are failing to resolve, since it silences some of the noise. --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index efe21c6d1d6a..5ccdac181ce1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -117,6 +117,7 @@ "qiskit-aer": ("https://qiskit.org/ecosystem/aer/", None), "numpy": ("https://numpy.org/doc/stable/", None), "matplotlib": ("https://matplotlib.org/stable/", None), + "python": ("https://docs.python.org/3/", None), } # ----------------------------------------------------------------------------------