From 42cc239e568957a935d93896f6d0bf91c34f4462 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Mon, 26 Aug 2013 10:08:16 -0700 Subject: [PATCH] Add intersphinx for linking to python docs --- docs/conf.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 15aa9d8..08eed2d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ import sys, os, string # 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'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -287,3 +287,5 @@ epub_copyright = u'2013, Author' # Allow duplicate toc entries. #epub_tocdup = True + +intersphinx_mapping = {'http://docs.python.org/': None}