File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change 44class DocItem (NamedTuple ):
55 """Holds inventory symbol information."""
66
7- package : str # Name of the package name the symbol is from
8- group : str # Interpshinx "role" of the symbol, for example `label` or `method`
9- base_url : str # Absolute path to to which the relative path resolves, same for all items with the same package
10- relative_url_path : str # Relative path to the page where the symbol is located
11- symbol_id : str # Fragment id used to locate the symbol on the page
7+ package : str
8+ """Name of the package name the symbol is from"""
9+
10+ group : str
11+ """Interpshinx "role" of the symbol, for example `label` or `method`"""
12+
13+ base_url : str
14+ """Absolute path to to which the relative path resolves, same for all items with the same package"""
15+
16+ relative_url_path : str
17+ """Relative path to the page where the symbol is located"""
18+
19+ symbol_id : str
20+ """Fragment id used to locate the symbol on the page"""
1221
1322 @property
1423 def url (self ) -> str :
You can’t perform that action at this time.
0 commit comments