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: SVN-Git Migration <python-modules-team@lists.alioth.debian.org>
Date: Thu, 8 Oct 2015 08:35:05 -0700
Subject: Use a local copy of object.inv from doc.python.org and
cairographics.org, instead of downloading them each time from the internet
Last-Update: 2014-09-22
Patch-Name: use_local_objects.inv.patch
---
docs/conf.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/conf.py b/docs/conf.py
index 7825f06..2f93a2d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -12,5 +12,5 @@ exclude_patterns = ['_build']
autodoc_member_order = 'bysource'
autodoc_default_flags = ['members']
intersphinx_mapping = {
- 'http://docs.python.org/': None,
- 'http://cairographics.org/documentation/pycairo/2/': None}
+ 'http://docs.python.org/': '../debian/python.org_objects.inv',
+ 'http://cairographics.org/documentation/pycairo/2/': '../debian/cairographics.org_pycairo2_objects.inv'}
|