Turn on intersphinx support for links to the standard library.
This commit is contained in:
parent
f7a2fad709
commit
0984b2cf09
|
@ -15,6 +15,7 @@ extensions = [
|
|||
"sphinx.ext.autodoc",
|
||||
"sphinx.ext.coverage",
|
||||
"sphinx.ext.extlinks",
|
||||
"sphinx.ext.intersphinx",
|
||||
"sphinx.ext.viewcode",
|
||||
]
|
||||
|
||||
|
@ -101,3 +102,7 @@ extlinks = {
|
|||
'https://github.com/downloads/facebook/tornado/tornado-%s.tar.g%%s' % version,
|
||||
'tornado-%s.tar.g' % version),
|
||||
}
|
||||
|
||||
intersphinx_mapping = {
|
||||
'python': ('http://python.readthedocs.org/en/latest/', None),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue