diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-02 14:34:20 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2017-07-02 14:35:52 +0300 |
commit | 5f0c56bcf1fcb7f2d36a0c420b4681a812047c59 (patch) | |
tree | 1f656b78713df919be6830ea261fb40bf87bea42 /docs/conf.py | |
parent | 7e14f99c26af0e1df0979ba97ab6380339014a7d (diff) |
docs/conf.py: Switch to "new" format of intersphinx_mapping.
As described at
http://www.sphinx-doc.org/en/stable/ext/intersphinx.html#confval-intersphinx_mapping
This will allow to explicitly refer to CPython docs for cross-references.
Diffstat (limited to 'docs/conf.py')
-rwxr-xr-x | docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index 2b20d47ab..bb1d61358 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -317,7 +317,7 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'http://docs.python.org/': None} +intersphinx_mapping = {'python': ('http://docs.python.org/3', None)} # Append the other ports' specific folders/files to the exclude pattern exclude_patterns.extend([port + '*' for port in ports if port != micropy_port]) |