From 0f611c3c133515775dc6225c1858a38e95de9971 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Tue, 3 Dec 2013 21:53:54 +0000 Subject: [PATCH] Add intersphinx mapping to docs.python.org. --- docs/conf.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 67c3333..17a4c08 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -33,7 +33,12 @@ needs_sphinx = '1.1' # 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', 'sphinx.ext.viewcode'] +extensions = ['sphinx.ext.autodoc', + 'sphinx.ext.viewcode', + 'sphinx.ext.intersphinx', + 'sphinx.ext.doctest', + 'sphinxcontrib.fulltoc', + ] # Add any paths that contain templates here, relative to this directory. templates_path = ['_static'] @@ -95,6 +100,8 @@ pygments_style = 'monokai' # A list of ignored prefixes for module index sorting. #modindex_common_prefix = [] +# Example configuration for intersphinx: refer to the Python standard library. +intersphinx_mapping = {'http://docs.python.org/': None} # -- Options for HTML output ---------------------------------------------------