diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2014-02-21 15:35:22 -0800 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2014-02-21 15:35:22 -0800 |
commit | 0b2d523665f3989d9375cd83970400ace0e40336 (patch) | |
tree | 0f0bc2486bf0393a2b321e917415070501f03d2b /sites/docs | |
parent | 8c7eafdfcd00e7da483cfd1634683c67ea77b248 (diff) |
Connect to Python stdlib intersphinx
Diffstat (limited to 'sites/docs')
-rw-r--r-- | sites/docs/conf.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sites/docs/conf.py b/sites/docs/conf.py index c0f51f76..619ff816 100644 --- a/sites/docs/conf.py +++ b/sites/docs/conf.py @@ -9,3 +9,8 @@ extensions.extend(['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']) # Autodoc settings autodoc_default_flags = ['members', 'special-members'] + +# Intersphinx connection to stdlib +intersphinx_mapping = { + 'python': ('http://docs.python.org/2.6', None), +} |