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 e3c3ea55b3aabea73c337c508a013484fb71f4b0 Mon Sep 17 00:00:00 2001
From: Larissa Reis <larissa@colivre.coop.br>
Date: Thu, 8 Oct 2015 13:07:27 -0700
Subject: Use local inventory when building doc instead of fetching python.org
Forwarded: not-needed
Patch-Name: use-local-intersphinx-inventory.patch
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index d2331b4..d99a290 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -234,7 +234,7 @@ man_pages = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
- 'http://docs.python.org/3/': None,
+ 'http://docs.python.org/3/': '/usr/share/doc/python3-doc/html/objects.inv',
}
# Autodoc
|