@@ -99,16 +99,19 @@ class members that are inherited from a base class. This value can be
99
99
import os
100
100
import re
101
101
102
+ import sphinx
103
+ from docutils .parsers .rst .directives import flag
104
+ from packaging .version import Version
102
105
from sphinx .util import logging
103
106
from sphinx .ext .autosummary import Autosummary
104
107
from sphinx .ext .inheritance_diagram import InheritanceDiagram , InheritanceGraph , try_import
105
- from docutils .parsers .rst .directives import flag
106
108
107
109
from .utils import find_mod_objs , cleanup_whitespace
108
110
109
111
__all__ = ['Automoddiagram' , 'Automodsumm' , 'automodsumm_to_autosummary_lines' ,
110
112
'generate_automodsumm_docs' , 'process_automodsumm_generation' ]
111
113
logger = logging .getLogger (__name__ )
114
+ SPHINX_LT_8_2 = Version (sphinx .__version__ ) < Version ("8.2.dev" )
112
115
113
116
114
117
def _str_list_converter (argument ):
@@ -267,15 +270,24 @@ def run(self):
267
270
268
271
old_generate_dot = InheritanceGraph .generate_dot
269
272
270
-
271
- def patched_generate_dot (self , name , urls = {}, env = None ,
272
- graph_attrs = {}, node_attrs = {}, edge_attrs = {}):
273
- # Make a new mapping dictionary that uses class full names by importing each
274
- # class documented name
275
- fullname_urls = {self .class_name (try_import (name ), 0 , None ): url
276
- for name , url in urls .items () if try_import (name ) is not None }
277
- return old_generate_dot (self , name , urls = fullname_urls , env = env ,
278
- graph_attrs = graph_attrs , node_attrs = node_attrs , edge_attrs = edge_attrs )
273
+ if SPHINX_LT_8_2 :
274
+ def patched_generate_dot (self , name , urls = {}, env = None ,
275
+ graph_attrs = {}, node_attrs = {}, edge_attrs = {}):
276
+ # Make a new mapping dictionary that uses class full names by importing each
277
+ # class documented name
278
+ fullname_urls = {self .class_name (try_import (name ), 0 , None ): url
279
+ for name , url in urls .items () if try_import (name ) is not None }
280
+ return old_generate_dot (self , name , urls = fullname_urls , env = env ,
281
+ graph_attrs = graph_attrs , node_attrs = node_attrs , edge_attrs = edge_attrs )
282
+ else :
283
+ def patched_generate_dot (self , name , urls = {}, config = None ,
284
+ graph_attrs = {}, node_attrs = {}, edge_attrs = {}):
285
+ # Make a new mapping dictionary that uses class full names by importing each
286
+ # class documented name
287
+ fullname_urls = {self .class_name (try_import (name ), 0 , None ): url
288
+ for name , url in urls .items () if try_import (name ) is not None }
289
+ return old_generate_dot (self , name , urls = fullname_urls , config = config ,
290
+ graph_attrs = graph_attrs , node_attrs = node_attrs , edge_attrs = edge_attrs )
279
291
280
292
281
293
InheritanceGraph .generate_dot = patched_generate_dot
@@ -532,9 +544,7 @@ def generate_automodsumm_docs(lines, srcfn, app=None, suffix='.rst',
532
544
533
545
new_files .append (fn )
534
546
535
- f = open (fn , 'w' , encoding = 'utf8' )
536
-
537
- try :
547
+ with open (fn , 'w' , encoding = 'utf8' ) as f :
538
548
539
549
doc = get_documenter (app , obj , parent )
540
550
@@ -672,8 +682,6 @@ def get_members_class(obj, typ, include_public=[],
672
682
673
683
rendered = template .render (** ns )
674
684
f .write (cleanup_whitespace (rendered ))
675
- finally :
676
- f .close ()
677
685
678
686
679
687
def setup (app ):
0 commit comments