From f5eca2c24e611876ed9312f260eb8cdc2b9a7ce7 Mon Sep 17 00:00:00 2001 From: Harmon Date: Tue, 6 Apr 2021 18:02:08 -0500 Subject: [PATCH] Use Intersphinx linking to link to Python documentation --- docs/conf.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 1312828..8ef94ab 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,12 @@ sys.path.append(os.path.abspath('..')) # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc'] +extensions = [ + 'sphinx.ext.autodoc', + 'sphinx.ext.intersphinx' +] + +intersphinx_mapping = {'python': ('https://docs.python.org/3', None)} # Add any paths that contain templates here, relative to this directory. #templates_path = ['_templates'] -- 2.25.1