Author: "P. J. McDermott" Forwarded: not-needed Subject: Use non-None object inventory values in intersphinx_mapping --- a/docs/conf.py +++ b/docs/conf.py @@ -249,4 +249,9 @@ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'http://docs.python.org/': None} +intersphinx_mapping = { + 'http://docs.python.org/': + '/usr/share/doc/python' + + '.'.join([str(x) for x in sys.version_info[0:2]]) + + '/html/objects.inv', +}