1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From d0e5187880c090f14e2a1752d6f0c39a075670d3 Mon Sep 17 00:00:00 2001
From: SVN-Git Migration <python-modules-team@lists.alioth.debian.org>
Date: Sun, 11 Oct 2015 10:12:16 -0700
Subject: Use a local copy of object.inv from doc.python.org, instead of
downloading it each time from the internet
Patch-Name: 10_use_local_python.org_object.inv_sphinx.diff
---
doc/source/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 8c18e42..faa289c 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -200,7 +200,7 @@ texinfo_documents = [
# Intersphinx configuration
# -----------------------------------------------------------------------------
intersphinx_mapping = {
- 'python': ('https://docs.python.org/dev', None),
+ 'python': ('https://docs.python.org/dev', '../../debian/python.org_objects.inv'),
'scipy': ('https://docs.scipy.org/doc/scipy/reference', None),
'matplotlib': ('http://matplotlib.org', None)
}
|