File: 0002-fix-intersphinx.patch

package info (click to toggle)
python-digitalocean 1.17.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 948 kB
  • sloc: python: 5,075; makefile: 46
file content (19 lines) | stat: -rw-r--r-- 847 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Description: Remove intersphinx config option
 The intersphinx config option should be a dict[str, tuple[]. It is improperly
 set here to be a dict[str, None]. That being said, since we block internet
 access anyway, there's no point in fixing this; just remove it.
Author: Harlan Lieberman-Berg <hlieberman@debian.org>
Last-Update: 2026-03-29
Forwarded: not-needed
Index: python-digitalocean/docs/conf.py
===================================================================
--- python-digitalocean.orig/docs/conf.py
+++ python-digitalocean/docs/conf.py
@@ -180,7 +180,3 @@ epub_copyright = copyright
 # A list of files that should not be packed into the epub file.
 epub_exclude_files = ['search.html']
 
-
-
-# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {'https://docs.python.org/': None}