From f96c9f6c2bb8c7ec816c5726855537b9856039dc 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. (cherry picked from commit b3b59e97f3279ceca7006601181ecced28a4a1aa) --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 42ab3bed8247..211931a10a4d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -76,6 +76,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), } # ----------------------------------------------------------------------------------