summaryrefslogtreecommitdiff
path: root/documentation/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/conf.py')
-rw-r--r--documentation/conf.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/documentation/conf.py b/documentation/conf.py
index 7fb30b0..af724a5 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -22,7 +22,7 @@ import sys, os
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = []
+extensions = ['sphinx.ext.intersphinx']
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
@@ -192,3 +192,9 @@ latex_logo = 'pyserial.png'
# If false, no module index is generated.
#latex_use_modindex = True
+
+# for external links to standard library
+intersphinx_mapping = {
+ #~ 'python': ('http://docs.python.org', None),
+ 'py': ('http://docs.python.org', None),
+ }