mkdocstrings-python 1.10.9__py3-none-any.whl → 1.11.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mkdocstrings_handlers/python/handler.py +1 -0
- mkdocstrings_handlers/python/rendering.py +58 -0
- mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja +2 -2
- mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja +3 -3
- mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja +33 -31
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja +1 -1
- {mkdocstrings_python-1.10.9.dist-info → mkdocstrings_python-1.11.0.dist-info}/METADATA +3 -3
- {mkdocstrings_python-1.10.9.dist-info → mkdocstrings_python-1.11.0.dist-info}/RECORD +28 -28
- {mkdocstrings_python-1.10.9.dist-info → mkdocstrings_python-1.11.0.dist-info}/WHEEL +0 -0
- {mkdocstrings_python-1.10.9.dist-info → mkdocstrings_python-1.11.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -426,6 +426,7 @@ class PythonHandler(BaseHandler):
|
|
|
426
426
|
self.env.filters["as_functions_section"] = rendering.do_as_functions_section
|
|
427
427
|
self.env.filters["as_classes_section"] = rendering.do_as_classes_section
|
|
428
428
|
self.env.filters["as_modules_section"] = rendering.do_as_modules_section
|
|
429
|
+
self.env.globals["AutorefsHook"] = rendering.AutorefsHook
|
|
429
430
|
self.env.tests["existing_template"] = lambda template_name: template_name in self.env.list_templates()
|
|
430
431
|
|
|
431
432
|
def get_anchors(self, data: CollectorItem) -> tuple[str, ...]: # noqa: D102 (ignore missing docstring)
|
|
@@ -22,6 +22,7 @@ from griffe import (
|
|
|
22
22
|
)
|
|
23
23
|
from jinja2 import TemplateNotFound, pass_context, pass_environment
|
|
24
24
|
from markupsafe import Markup
|
|
25
|
+
from mkdocs_autorefs.references import AutorefsHookInterface
|
|
25
26
|
from mkdocstrings.loggers import get_logger
|
|
26
27
|
|
|
27
28
|
if TYPE_CHECKING:
|
|
@@ -571,3 +572,60 @@ def do_as_modules_section(
|
|
|
571
572
|
A modules docstring section.
|
|
572
573
|
"""
|
|
573
574
|
return DocstringSectionModules([])
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
class AutorefsHook(AutorefsHookInterface):
|
|
578
|
+
"""Autorefs hook.
|
|
579
|
+
|
|
580
|
+
With this hook, we're able to add context to autorefs (cross-references),
|
|
581
|
+
such as originating file path and line number, to improve error reporting.
|
|
582
|
+
"""
|
|
583
|
+
|
|
584
|
+
def __init__(self, current_object: Object | Alias, config: dict[str, Any]) -> None:
|
|
585
|
+
"""Initialize the hook.
|
|
586
|
+
|
|
587
|
+
Parameters:
|
|
588
|
+
current_object: The object being rendered.
|
|
589
|
+
config: The configuration dictionary.
|
|
590
|
+
"""
|
|
591
|
+
self.current_object = current_object
|
|
592
|
+
self.config = config
|
|
593
|
+
|
|
594
|
+
def expand_identifier(self, identifier: str) -> str:
|
|
595
|
+
"""Expand an identifier.
|
|
596
|
+
|
|
597
|
+
Parameters:
|
|
598
|
+
identifier: The identifier to expand.
|
|
599
|
+
|
|
600
|
+
Returns:
|
|
601
|
+
The expanded identifier.
|
|
602
|
+
"""
|
|
603
|
+
return identifier
|
|
604
|
+
|
|
605
|
+
def get_context(self) -> AutorefsHookInterface.Context:
|
|
606
|
+
"""Get the context for the current object.
|
|
607
|
+
|
|
608
|
+
Returns:
|
|
609
|
+
The context.
|
|
610
|
+
"""
|
|
611
|
+
role = {
|
|
612
|
+
"attribute": "data" if self.current_object.parent and self.current_object.parent.is_module else "attr",
|
|
613
|
+
"class": "class",
|
|
614
|
+
"function": "meth" if self.current_object.parent and self.current_object.parent.is_class else "func",
|
|
615
|
+
"module": "mod",
|
|
616
|
+
}.get(self.current_object.kind.value.lower(), "obj")
|
|
617
|
+
origin = self.current_object.path
|
|
618
|
+
try:
|
|
619
|
+
filepath = self.current_object.docstring.parent.filepath # type: ignore[union-attr]
|
|
620
|
+
lineno = self.current_object.docstring.lineno or 0 # type: ignore[union-attr]
|
|
621
|
+
except AttributeError:
|
|
622
|
+
filepath = self.current_object.filepath
|
|
623
|
+
lineno = 0
|
|
624
|
+
|
|
625
|
+
return AutorefsHookInterface.Context(
|
|
626
|
+
domain="py",
|
|
627
|
+
role=role,
|
|
628
|
+
origin=origin,
|
|
629
|
+
filepath=str(filepath),
|
|
630
|
+
lineno=lineno,
|
|
631
|
+
)
|
|
@@ -15,6 +15,6 @@ Context:
|
|
|
15
15
|
{% endblock logs %}
|
|
16
16
|
|
|
17
17
|
<details class="{{ section.value.kind }}" open>
|
|
18
|
-
<summary>{{ section.title|convert_markdown(heading_level, html_id, strip_paragraph=True) }}</summary>
|
|
19
|
-
{{ section.value.contents|convert_markdown(heading_level, html_id) }}
|
|
18
|
+
<summary>{{ section.title|convert_markdown(heading_level, html_id, strip_paragraph=True, autoref_hook=autoref_hook) }}</summary>
|
|
19
|
+
{{ section.value.contents|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
20
20
|
</details>
|
|
@@ -43,7 +43,7 @@ Context:
|
|
|
43
43
|
</td>
|
|
44
44
|
<td>
|
|
45
45
|
<div class="doc-md-description">
|
|
46
|
-
{{ attribute.description|convert_markdown(heading_level, html_id) }}
|
|
46
|
+
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
47
47
|
</div>
|
|
48
48
|
</td>
|
|
49
49
|
</tr>
|
|
@@ -66,7 +66,7 @@ Context:
|
|
|
66
66
|
{% endif %}
|
|
67
67
|
–
|
|
68
68
|
<div class="doc-md-description">
|
|
69
|
-
{{ attribute.description|convert_markdown(heading_level, html_id) }}
|
|
69
|
+
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
70
70
|
</div>
|
|
71
71
|
</li>
|
|
72
72
|
{% endfor %}
|
|
@@ -88,7 +88,7 @@ Context:
|
|
|
88
88
|
<td><code><autoref identifier="{{ obj.path }}.{{ attribute.name }}" optional hover>{{ attribute.name }}</autoref></code></td>
|
|
89
89
|
<td class="doc-attribute-details">
|
|
90
90
|
<div class="doc-md-description">
|
|
91
|
-
{{ attribute.description|convert_markdown(heading_level, html_id) }}
|
|
91
|
+
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
92
92
|
</div>
|
|
93
93
|
<p>
|
|
94
94
|
{% if attribute.annotation %}
|
|
@@ -35,7 +35,7 @@ Context:
|
|
|
35
35
|
<td><code><autoref identifier="{{ obj.path }}.{{ class.name }}" optional hover>{{ class.name }}</autoref></code></td>
|
|
36
36
|
<td>
|
|
37
37
|
<div class="doc-md-description">
|
|
38
|
-
{{ class.description|convert_markdown(heading_level, html_id) }}
|
|
38
|
+
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
39
39
|
</div>
|
|
40
40
|
</td>
|
|
41
41
|
</tr>
|
|
@@ -53,7 +53,7 @@ Context:
|
|
|
53
53
|
<b><code><autoref identifier="{{ obj.path }}.{{ class.name }}" optional hover>{{ class.name }}</autoref></code></b>
|
|
54
54
|
–
|
|
55
55
|
<div class="doc-md-description">
|
|
56
|
-
{{ class.description|convert_markdown(heading_level, html_id) }}
|
|
56
|
+
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
57
57
|
</div>
|
|
58
58
|
</li>
|
|
59
59
|
{% endfor %}
|
|
@@ -75,7 +75,7 @@ Context:
|
|
|
75
75
|
<td><code><autoref identifier="{{ obj.path }}.{{ class.name }}" optional hover>{{ class.name }}</autoref></code></td>
|
|
76
76
|
<td class="doc-class-details">
|
|
77
77
|
<div class="doc-md-description">
|
|
78
|
-
{{ class.description|convert_markdown(heading_level, html_id) }}
|
|
78
|
+
{{ class.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
79
79
|
</div>
|
|
80
80
|
</td>
|
|
81
81
|
</tr>
|
|
@@ -21,7 +21,7 @@ Context:
|
|
|
21
21
|
<p><span class="doc-section-title">{{ section.title or lang.t("Examples:") }}</span></p>
|
|
22
22
|
{% for section_type, sub_section in section.value %}
|
|
23
23
|
{% if section_type.value == "text" %}
|
|
24
|
-
{{ sub_section|convert_markdown(heading_level, html_id) }}
|
|
24
|
+
{{ sub_section|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
25
25
|
{% elif section_type.value == "examples" %}
|
|
26
26
|
{{ sub_section|highlight(language="pycon", linenums=False) }}
|
|
27
27
|
{% endif %}
|
|
@@ -36,7 +36,7 @@ Context:
|
|
|
36
36
|
<td><code><autoref identifier="{{ obj.path }}.{{ function.name }}" optional hover>{{ function.name }}</autoref></code></td>
|
|
37
37
|
<td>
|
|
38
38
|
<div class="doc-md-description">
|
|
39
|
-
{{ function.description|convert_markdown(heading_level, html_id) }}
|
|
39
|
+
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
40
40
|
</div>
|
|
41
41
|
</td>
|
|
42
42
|
</tr>
|
|
@@ -56,7 +56,7 @@ Context:
|
|
|
56
56
|
<b><code><autoref identifier="{{ obj.path }}.{{ function.name }}" optional hover>{{ function.name }}</autoref></code></b>
|
|
57
57
|
–
|
|
58
58
|
<div class="doc-md-description">
|
|
59
|
-
{{ function.description|convert_markdown(heading_level, html_id) }}
|
|
59
|
+
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
60
60
|
</div>
|
|
61
61
|
</li>
|
|
62
62
|
{% endif %}
|
|
@@ -80,7 +80,7 @@ Context:
|
|
|
80
80
|
<td><code><autoref identifier="{{ obj.path }}.{{ function.name }}" optional hover>{{ function.name }}</autoref></code></td>
|
|
81
81
|
<td class="doc-function-details">
|
|
82
82
|
<div class="doc-md-description">
|
|
83
|
-
{{ function.description|convert_markdown(heading_level, html_id) }}
|
|
83
|
+
{{ function.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
84
84
|
</div>
|
|
85
85
|
</td>
|
|
86
86
|
</tr>
|
|
@@ -35,7 +35,7 @@ Context:
|
|
|
35
35
|
<td><code><autoref identifier="{{ obj.path }}.{{ module.name }}" optional hover>{{ module.name }}</autoref></code></td>
|
|
36
36
|
<td>
|
|
37
37
|
<div class="doc-md-description">
|
|
38
|
-
{{ module.description|convert_markdown(heading_level, html_id) }}
|
|
38
|
+
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
39
39
|
</div>
|
|
40
40
|
</td>
|
|
41
41
|
</tr>
|
|
@@ -53,7 +53,7 @@ Context:
|
|
|
53
53
|
<b><code><autoref identifier="{{ obj.path }}.{{ module.name }}" optional hover>{{ module.name }}</autoref></code></b>
|
|
54
54
|
–
|
|
55
55
|
<div class="doc-md-description">
|
|
56
|
-
{{ module.description|convert_markdown(heading_level, html_id) }}
|
|
56
|
+
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
57
57
|
</div>
|
|
58
58
|
</li>
|
|
59
59
|
{% endfor %}
|
|
@@ -75,7 +75,7 @@ Context:
|
|
|
75
75
|
<td><code><autoref identifier="{{ obj.path }}.{{ module.name }}" optional hover>{{ module.name }}</autoref></code></td>
|
|
76
76
|
<td class="doc-module-details">
|
|
77
77
|
<div class="doc-md-description">
|
|
78
|
-
{{ module.description|convert_markdown(heading_level, html_id) }}
|
|
78
|
+
{{ module.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
79
79
|
</div>
|
|
80
80
|
</td>
|
|
81
81
|
</tr>
|
|
@@ -43,7 +43,7 @@ Context:
|
|
|
43
43
|
</td>
|
|
44
44
|
<td>
|
|
45
45
|
<div class="doc-md-description">
|
|
46
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
46
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
47
47
|
</div>
|
|
48
48
|
</td>
|
|
49
49
|
</tr>
|
|
@@ -66,7 +66,7 @@ Context:
|
|
|
66
66
|
{% endif %}
|
|
67
67
|
–
|
|
68
68
|
<div class="doc-md-description">
|
|
69
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
69
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
70
70
|
</div>
|
|
71
71
|
</li>
|
|
72
72
|
{% endfor %}
|
|
@@ -88,7 +88,7 @@ Context:
|
|
|
88
88
|
<td><code>{{ parameter.name }}</code></td>
|
|
89
89
|
<td class="doc-param-details">
|
|
90
90
|
<div class="doc-md-description">
|
|
91
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
91
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
92
92
|
</div>
|
|
93
93
|
<p>
|
|
94
94
|
{% if parameter.annotation %}
|
|
@@ -44,7 +44,7 @@ Context:
|
|
|
44
44
|
</td>
|
|
45
45
|
<td>
|
|
46
46
|
<div class="doc-md-description">
|
|
47
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
47
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
48
48
|
</div>
|
|
49
49
|
</td>
|
|
50
50
|
<td>
|
|
@@ -81,7 +81,7 @@ Context:
|
|
|
81
81
|
{% endif %}
|
|
82
82
|
–
|
|
83
83
|
<div class="doc-md-description">
|
|
84
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
84
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
85
85
|
</div>
|
|
86
86
|
</li>
|
|
87
87
|
{% endfor %}
|
|
@@ -103,7 +103,7 @@ Context:
|
|
|
103
103
|
<td><code>{{ parameter.name }}</code></td>
|
|
104
104
|
<td class="doc-param-details">
|
|
105
105
|
<div class="doc-md-description">
|
|
106
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
106
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
107
107
|
</div>
|
|
108
108
|
<p>
|
|
109
109
|
{% if parameter.annotation %}
|
|
@@ -41,7 +41,7 @@ Context:
|
|
|
41
41
|
</td>
|
|
42
42
|
<td>
|
|
43
43
|
<div class="doc-md-description">
|
|
44
|
-
{{ raises.description|convert_markdown(heading_level, html_id) }}
|
|
44
|
+
{{ raises.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
45
45
|
</div>
|
|
46
46
|
</td>
|
|
47
47
|
</tr>
|
|
@@ -63,7 +63,7 @@ Context:
|
|
|
63
63
|
–
|
|
64
64
|
{% endif %}
|
|
65
65
|
<div class="doc-md-description">
|
|
66
|
-
{{ raises.description|convert_markdown(heading_level, html_id) }}
|
|
66
|
+
{{ raises.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
67
67
|
</div>
|
|
68
68
|
</li>
|
|
69
69
|
{% endfor %}
|
|
@@ -91,7 +91,7 @@ Context:
|
|
|
91
91
|
</td>
|
|
92
92
|
<td class="doc-raises-details">
|
|
93
93
|
<div class="doc-md-description">
|
|
94
|
-
{{ raises.description|convert_markdown(heading_level, html_id) }}
|
|
94
|
+
{{ raises.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
95
95
|
</div>
|
|
96
96
|
</td>
|
|
97
97
|
</tr>
|
|
@@ -44,7 +44,7 @@ Context:
|
|
|
44
44
|
</td>
|
|
45
45
|
<td>
|
|
46
46
|
<div class="doc-md-description">
|
|
47
|
-
{{ receives.description|convert_markdown(heading_level, html_id) }}
|
|
47
|
+
{{ receives.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
48
48
|
</div>
|
|
49
49
|
</td>
|
|
50
50
|
</tr>
|
|
@@ -69,7 +69,7 @@ Context:
|
|
|
69
69
|
{% endif %}
|
|
70
70
|
–
|
|
71
71
|
<div class="doc-md-description">
|
|
72
|
-
{{ receives.description|convert_markdown(heading_level, html_id) }}
|
|
72
|
+
{{ receives.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
73
73
|
</div>
|
|
74
74
|
</li>
|
|
75
75
|
{% endfor %}
|
|
@@ -101,7 +101,7 @@ Context:
|
|
|
101
101
|
</td>
|
|
102
102
|
<td class="doc-receives-details">
|
|
103
103
|
<div class="doc-md-description">
|
|
104
|
-
{{ receives.description|convert_markdown(heading_level, html_id) }}
|
|
104
|
+
{{ receives.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
105
105
|
</div>
|
|
106
106
|
{% if receives.name and receives.annotation %}
|
|
107
107
|
<p>
|
|
@@ -44,7 +44,7 @@ Context:
|
|
|
44
44
|
</td>
|
|
45
45
|
<td>
|
|
46
46
|
<div class="doc-md-description">
|
|
47
|
-
{{ returns.description|convert_markdown(heading_level, html_id) }}
|
|
47
|
+
{{ returns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
48
48
|
</div>
|
|
49
49
|
</td>
|
|
50
50
|
</tr>
|
|
@@ -69,7 +69,7 @@ Context:
|
|
|
69
69
|
{% endif %}
|
|
70
70
|
–
|
|
71
71
|
<div class="doc-md-description">
|
|
72
|
-
{{ returns.description|convert_markdown(heading_level, html_id) }}
|
|
72
|
+
{{ returns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
73
73
|
</div>
|
|
74
74
|
</li>
|
|
75
75
|
{% endfor %}
|
|
@@ -101,7 +101,7 @@ Context:
|
|
|
101
101
|
</td>
|
|
102
102
|
<td class="doc-returns-details">
|
|
103
103
|
<div class="doc-md-description">
|
|
104
|
-
{{ returns.description|convert_markdown(heading_level, html_id) }}
|
|
104
|
+
{{ returns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
105
105
|
</div>
|
|
106
106
|
{% if returns.name and returns.annotation %}
|
|
107
107
|
<p>
|
|
@@ -41,7 +41,7 @@ Context:
|
|
|
41
41
|
</td>
|
|
42
42
|
<td>
|
|
43
43
|
<div class="doc-md-description">
|
|
44
|
-
{{ warns.description|convert_markdown(heading_level, html_id) }}
|
|
44
|
+
{{ warns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
45
45
|
</div>
|
|
46
46
|
</td>
|
|
47
47
|
</tr>
|
|
@@ -63,7 +63,7 @@ Context:
|
|
|
63
63
|
–
|
|
64
64
|
{% endif %}
|
|
65
65
|
<div class="doc-md-description">
|
|
66
|
-
{{ warns.description|convert_markdown(heading_level, html_id) }}
|
|
66
|
+
{{ warns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
67
67
|
</div>
|
|
68
68
|
</li>
|
|
69
69
|
{% endfor %}
|
|
@@ -91,7 +91,7 @@ Context:
|
|
|
91
91
|
</td>
|
|
92
92
|
<td class="doc-warns-details">
|
|
93
93
|
<div class="doc-md-description">
|
|
94
|
-
{{ warns.description|convert_markdown(heading_level, html_id) }}
|
|
94
|
+
{{ warns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
95
95
|
</div>
|
|
96
96
|
</td>
|
|
97
97
|
</tr>
|
|
@@ -44,7 +44,7 @@ Context:
|
|
|
44
44
|
</td>
|
|
45
45
|
<td>
|
|
46
46
|
<div class="doc-md-description">
|
|
47
|
-
{{ yields.description|convert_markdown(heading_level, html_id) }}
|
|
47
|
+
{{ yields.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
48
48
|
</div>
|
|
49
49
|
</td>
|
|
50
50
|
</tr>
|
|
@@ -69,7 +69,7 @@ Context:
|
|
|
69
69
|
{% endif %}
|
|
70
70
|
–
|
|
71
71
|
<div class="doc-md-description">
|
|
72
|
-
{{ yields.description|convert_markdown(heading_level, html_id) }}
|
|
72
|
+
{{ yields.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
73
73
|
</div>
|
|
74
74
|
</li>
|
|
75
75
|
{% endfor %}
|
|
@@ -101,7 +101,7 @@ Context:
|
|
|
101
101
|
</td>
|
|
102
102
|
<td class="doc-yields-details">
|
|
103
103
|
<div class="doc-md-description">
|
|
104
|
-
{{ yields.description|convert_markdown(heading_level, html_id) }}
|
|
104
|
+
{{ yields.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
105
105
|
</div>
|
|
106
106
|
{% if yields.name and yields.annotation %}
|
|
107
107
|
<p>
|
|
@@ -19,35 +19,37 @@ Context:
|
|
|
19
19
|
-#}
|
|
20
20
|
{{ log.debug("Rendering docstring") }}
|
|
21
21
|
{% endblock logs %}
|
|
22
|
-
{%
|
|
23
|
-
{%
|
|
24
|
-
{
|
|
25
|
-
|
|
26
|
-
{%
|
|
27
|
-
|
|
28
|
-
{%
|
|
29
|
-
|
|
30
|
-
{%
|
|
31
|
-
|
|
32
|
-
{%
|
|
33
|
-
|
|
34
|
-
{%
|
|
35
|
-
|
|
36
|
-
{%
|
|
37
|
-
|
|
38
|
-
{%
|
|
39
|
-
|
|
40
|
-
{%
|
|
41
|
-
|
|
42
|
-
{%
|
|
43
|
-
|
|
44
|
-
{%
|
|
45
|
-
|
|
46
|
-
{%
|
|
47
|
-
|
|
48
|
-
{%
|
|
49
|
-
|
|
50
|
-
{%
|
|
51
|
-
|
|
52
|
-
|
|
22
|
+
{% with autoref_hook = AutorefsHook(obj, config) %}
|
|
23
|
+
{% for section in docstring_sections %}
|
|
24
|
+
{% if config.show_docstring_description and section.kind.value == "text" %}
|
|
25
|
+
{{ section.value|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
26
|
+
{% elif config.show_docstring_attributes and section.kind.value == "attributes" %}
|
|
27
|
+
{% include "docstring/attributes"|get_template with context %}
|
|
28
|
+
{% elif config.show_docstring_functions and section.kind.value == "functions" %}
|
|
29
|
+
{% include "docstring/functions"|get_template with context %}
|
|
30
|
+
{% elif config.show_docstring_classes and section.kind.value == "classes" %}
|
|
31
|
+
{% include "docstring/classes"|get_template with context %}
|
|
32
|
+
{% elif config.show_docstring_modules and section.kind.value == "modules" %}
|
|
33
|
+
{% include "docstring/modules"|get_template with context %}
|
|
34
|
+
{% elif config.show_docstring_parameters and section.kind.value == "parameters" %}
|
|
35
|
+
{% include "docstring/parameters"|get_template with context %}
|
|
36
|
+
{% elif config.show_docstring_other_parameters and section.kind.value == "other parameters" %}
|
|
37
|
+
{% include "docstring/other_parameters"|get_template with context %}
|
|
38
|
+
{% elif config.show_docstring_raises and section.kind.value == "raises" %}
|
|
39
|
+
{% include "docstring/raises"|get_template with context %}
|
|
40
|
+
{% elif config.show_docstring_warns and section.kind.value == "warns" %}
|
|
41
|
+
{% include "docstring/warns"|get_template with context %}
|
|
42
|
+
{% elif config.show_docstring_yields and section.kind.value == "yields" %}
|
|
43
|
+
{% include "docstring/yields"|get_template with context %}
|
|
44
|
+
{% elif config.show_docstring_receives and section.kind.value == "receives" %}
|
|
45
|
+
{% include "docstring/receives"|get_template with context %}
|
|
46
|
+
{% elif config.show_docstring_returns and section.kind.value == "returns" %}
|
|
47
|
+
{% include "docstring/returns"|get_template with context %}
|
|
48
|
+
{% elif config.show_docstring_examples and section.kind.value == "examples" %}
|
|
49
|
+
{% include "docstring/examples"|get_template with context %}
|
|
50
|
+
{% elif config.show_docstring_description and section.kind.value == "admonition" %}
|
|
51
|
+
{% include "docstring/admonition"|get_template with context %}
|
|
52
|
+
{% endif %}
|
|
53
|
+
{% endfor %}
|
|
54
|
+
{% endwith %}
|
|
53
55
|
{% endif %}
|
|
@@ -38,7 +38,7 @@ Context:
|
|
|
38
38
|
{% endif %}
|
|
39
39
|
–
|
|
40
40
|
<div class="doc-md-description">
|
|
41
|
-
{{ attribute.description|convert_markdown(heading_level, html_id) }}
|
|
41
|
+
{{ attribute.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
42
42
|
</div>
|
|
43
43
|
</li>
|
|
44
44
|
{% endfor %}
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja
CHANGED
|
@@ -38,7 +38,7 @@ Context:
|
|
|
38
38
|
{% endif %}
|
|
39
39
|
–
|
|
40
40
|
<div class="doc-md-description">
|
|
41
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
41
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
42
42
|
</div>
|
|
43
43
|
</li>
|
|
44
44
|
{% endfor %}
|
|
@@ -43,7 +43,7 @@ Context:
|
|
|
43
43
|
{% endif %}
|
|
44
44
|
–
|
|
45
45
|
<div class="doc-md-description">
|
|
46
|
-
{{ parameter.description|convert_markdown(heading_level, html_id) }}
|
|
46
|
+
{{ parameter.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
47
47
|
</div>
|
|
48
48
|
</li>
|
|
49
49
|
{% endfor %}
|
|
@@ -37,7 +37,7 @@ Context:
|
|
|
37
37
|
{% endif %}
|
|
38
38
|
–
|
|
39
39
|
<div class="doc-md-description">
|
|
40
|
-
{{ raises.description|convert_markdown(heading_level, html_id) }}
|
|
40
|
+
{{ raises.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
41
41
|
</div>
|
|
42
42
|
</li>
|
|
43
43
|
{% endfor %}
|
|
@@ -40,7 +40,7 @@ Context:
|
|
|
40
40
|
{% endif %}
|
|
41
41
|
–
|
|
42
42
|
<div class="doc-md-description">
|
|
43
|
-
{{ receives.description|convert_markdown(heading_level, html_id) }}
|
|
43
|
+
{{ receives.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
44
44
|
</div>
|
|
45
45
|
</li>
|
|
46
46
|
{% endfor %}
|
|
@@ -40,7 +40,7 @@ Context:
|
|
|
40
40
|
{% endif %}
|
|
41
41
|
–
|
|
42
42
|
<div class="doc-md-description">
|
|
43
|
-
{{ returns.description|convert_markdown(heading_level, html_id) }}
|
|
43
|
+
{{ returns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
44
44
|
</div>
|
|
45
45
|
</li>
|
|
46
46
|
{% endfor %}
|
|
@@ -37,7 +37,7 @@ Context:
|
|
|
37
37
|
{% endif %}
|
|
38
38
|
–
|
|
39
39
|
<div class="doc-md-description">
|
|
40
|
-
{{ warns.description|convert_markdown(heading_level, html_id) }}
|
|
40
|
+
{{ warns.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
41
41
|
</div>
|
|
42
42
|
</li>
|
|
43
43
|
{% endfor %}
|
|
@@ -40,7 +40,7 @@ Context:
|
|
|
40
40
|
{% endif %}
|
|
41
41
|
–
|
|
42
42
|
<div class="doc-md-description">
|
|
43
|
-
{{ yields.description|convert_markdown(heading_level, html_id) }}
|
|
43
|
+
{{ yields.description|convert_markdown(heading_level, html_id, autoref_hook=autoref_hook) }}
|
|
44
44
|
</div>
|
|
45
45
|
</li>
|
|
46
46
|
{% endfor %}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: mkdocstrings-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.11.0
|
|
4
4
|
Summary: A Python handler for mkdocstrings.
|
|
5
5
|
Author-Email: =?utf-8?q?Timoth=C3=A9e_Mazzucotelli?= <dev@pawamoy.fr>
|
|
6
6
|
License: ISC
|
|
@@ -28,8 +28,8 @@ Project-URL: Discussions, https://github.com/mkdocstrings/python/discussions
|
|
|
28
28
|
Project-URL: Gitter, https://gitter.im/mkdocstrings/python
|
|
29
29
|
Project-URL: Funding, https://github.com/sponsors/pawamoy
|
|
30
30
|
Requires-Python: >=3.8
|
|
31
|
-
Requires-Dist: mkdocstrings>=0.
|
|
32
|
-
Requires-Dist: mkdocs-autorefs>=1.
|
|
31
|
+
Requires-Dist: mkdocstrings>=0.26
|
|
32
|
+
Requires-Dist: mkdocs-autorefs>=1.2
|
|
33
33
|
Requires-Dist: griffe>=0.49
|
|
34
34
|
Description-Content-Type: text/markdown
|
|
35
35
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
mkdocstrings_handlers/python/__init__.py,sha256=k-0NWvXysr5RqWjtGyCozookveBB-ADZHIhgxvI1px8,128
|
|
2
2
|
mkdocstrings_handlers/python/debug.py,sha256=4vqIbCbbz_vcjcFk6jPoF8E1kLig8AQEsQ93ybcjIVc,2894
|
|
3
|
-
mkdocstrings_handlers/python/handler.py,sha256=
|
|
3
|
+
mkdocstrings_handlers/python/handler.py,sha256=0e8M6j5oHzUoPYUt--n1nN_XmlG-AMc4nXJUezvPRto,24355
|
|
4
4
|
mkdocstrings_handlers/python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
-
mkdocstrings_handlers/python/rendering.py,sha256=
|
|
5
|
+
mkdocstrings_handlers/python/rendering.py,sha256=225Gi6KJKxcL7wpReFsA19_GXetdgiwF-fe006Oe5rY,19939
|
|
6
6
|
mkdocstrings_handlers/python/templates/material/_base/attribute.html,sha256=nn0671f4bE7VqnTs-VQL3SGPACWAxb2uJBRcP2nwYng,427
|
|
7
7
|
mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja,sha256=_NTap6NDkJUMpJJaQ4mCIzsxVWwkv4Z6ZdaCxLe34mo,4361
|
|
8
8
|
mkdocstrings_handlers/python/templates/material/_base/children.html,sha256=mOafkSlphFQJLWfrYrIMFVRGi2yjdtN6iJh8bPt7uRI,424
|
|
@@ -10,33 +10,33 @@ mkdocstrings_handlers/python/templates/material/_base/children.html.jinja,sha256
|
|
|
10
10
|
mkdocstrings_handlers/python/templates/material/_base/class.html,sha256=x0M8Wjk7TC9cgnstMoukLVQvxZUEMFjQA0VJQPEAC9Y,415
|
|
11
11
|
mkdocstrings_handlers/python/templates/material/_base/class.html.jinja,sha256=3_kmoqspe9abryiv4UeBX2Nlwl3uHtR8z5YvbueSb-M,7229
|
|
12
12
|
mkdocstrings_handlers/python/templates/material/_base/docstring.html,sha256=9gDeMzbEUGfOBklwvriH5HMfcotOcaXUvlgLC9klTi8,427
|
|
13
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja,sha256
|
|
13
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja,sha256=1kqZ_T7WMGQgFDuWQJaozLAk2FPTxNPyQuiDbFllRks,3133
|
|
14
14
|
mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html,sha256=yShTX2BBdYlOGCj-Hb1NIAeWldLGE_toMDIOn1OYdPs,460
|
|
15
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja,sha256=
|
|
15
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja,sha256=nAfWaPP1GU_JoFNu4WNgmIp-7MYpgNE7boNw2-xYQe0,689
|
|
16
16
|
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html,sha256=0c4KoMA2oehvEvNZvOgfvSxTMhVtOSl6R4r1fUoc3DE,460
|
|
17
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja,sha256=
|
|
17
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja,sha256=CrvPNrLQ_WSvC_tDKPxxtVT3CSP2MAEENvmCbHBqIN4,4189
|
|
18
18
|
mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html,sha256=rqwypiSrquMy6vJfQ5alYRBnH4w0ZxS01HXflFjakvw,451
|
|
19
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja,sha256=
|
|
19
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja,sha256=WcH-rEO_zabmCEVpa1OiA0an58dG4sTM5p8KMRJuhvE,3156
|
|
20
20
|
mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html,sha256=8z1IC698vA4J_pJU5s71Hv6FNMRkeL-W4MWo_kiN4C8,454
|
|
21
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja,sha256=
|
|
21
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja,sha256=3_Ql_2ppRCMTwNWBdJu0dpLiLvGmdlX2QgHe9At2D5Y,987
|
|
22
22
|
mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html,sha256=SGnlViyisdxaA5l-ALfV-bRNHcdXIWqO-j87uZhwbUI,457
|
|
23
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja,sha256=
|
|
23
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja,sha256=BwFUYMw7-3I8dQbJbzRA-2nnwKAXTJvEe8FMqZZheik,3695
|
|
24
24
|
mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html,sha256=JWBpk6tJN12tEZVqZ8kK2L_mmk0lkIdWuYYtfw_4dYQ,451
|
|
25
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja,sha256=
|
|
25
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja,sha256=E5TsDIIuSJ_C3fCfPiVKBmeyjEXxX_e1goW7hE1gz3U,3170
|
|
26
26
|
mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html,sha256=yDBXgj-qMDQP3Si-ZjDj-Z0ksRl3BP6YbwHy8fZrmdU,478
|
|
27
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja,sha256=
|
|
27
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja,sha256=he0BczZk-STGsgXgdGlGEqipdv1ptEYOH_hf0GwY9Y8,3978
|
|
28
28
|
mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html,sha256=xKQQydQJst6CJT0nH6RPWDXH92tRH_k1EIiPNoHzI1g,460
|
|
29
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja,sha256=
|
|
29
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja,sha256=jbmhNL0QavoPHgI3gEuPuY3gWlc_jplRfC5JCP8kyos,4991
|
|
30
30
|
mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html,sha256=f4tZCDGQxPeaTMvo95Yipc-t-enuqV42LZ4sKUu4FaM,448
|
|
31
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja,sha256=
|
|
31
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja,sha256=6bFvWICLUtKidLPNrCbBeGeDDd91AFmudhlXI3ZGUJU,3560
|
|
32
32
|
mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html,sha256=hz4Yr6SufruNEYPlsyS2G18UgHEhXBlBu15B02pXqtY,454
|
|
33
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja,sha256=
|
|
33
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja,sha256=VavSbDvZQYaE8nzpxMXg5BL0KtSj1ot3gZhlRf8IPPo,4653
|
|
34
34
|
mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html,sha256=_j3bo51bHgMlQa0Gl1KTOndVnrluSfd_uFIEcWvDI-M,451
|
|
35
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja,sha256=
|
|
35
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja,sha256=RrxNyELa5kz6RWbZGXRuuSNsTA-FND-rIsFBqyBYhW0,4617
|
|
36
36
|
mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html,sha256=4lkQoVm9QW3eGrBQ2l9tH8TpmvhSN6qPyOp6Pk6WRks,445
|
|
37
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja,sha256=
|
|
37
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja,sha256=40NfavXK48o1b6U9aYuybiCDc9cZ1sRv6t2L-ef2LaY,3532
|
|
38
38
|
mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html,sha256=-aNSOHi5lvqheUzklSRThN7UeCdsqTHm35CyKi5yaWU,448
|
|
39
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja,sha256=
|
|
39
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja,sha256=a52QMKQ2udRBIhGa1eHX6fYFvkqG3XqgIkPULt7_oKw,4591
|
|
40
40
|
mkdocstrings_handlers/python/templates/material/_base/expression.html,sha256=JU-ScDWoFk0m6x0Dx50LKN9yW7RzTWj4VYcJYEIQ144,430
|
|
41
41
|
mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja,sha256=tz5BbJcb87Xtd2pBI5xwUGTgDHQR2swSUV9Vjy_I-HM,3081
|
|
42
42
|
mkdocstrings_handlers/python/templates/material/_base/function.html,sha256=tFpXIt5sIhjXjTCXhtYZ4cGpbgdbaIdbm8HdP9Pccik,424
|
|
@@ -129,21 +129,21 @@ mkdocstrings_handlers/python/templates/material/summary/functions.html.jinja,sha
|
|
|
129
129
|
mkdocstrings_handlers/python/templates/material/summary/modules.html,sha256=ljlNxB28J7PGozwGSrshE97p2d3SJT09i1tOA91KTDE,49
|
|
130
130
|
mkdocstrings_handlers/python/templates/material/summary/modules.html.jinja,sha256=ljlNxB28J7PGozwGSrshE97p2d3SJT09i1tOA91KTDE,49
|
|
131
131
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html,sha256=0c4KoMA2oehvEvNZvOgfvSxTMhVtOSl6R4r1fUoc3DE,460
|
|
132
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja,sha256
|
|
132
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja,sha256=AOQeQ7LjP1Flktghx71BVkpl1TMpb3ifcV1xGcGw5t0,1541
|
|
133
133
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html,sha256=yDBXgj-qMDQP3Si-ZjDj-Z0ksRl3BP6YbwHy8fZrmdU,478
|
|
134
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja,sha256=
|
|
134
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja,sha256=5LdLWznEj9cekNQY9yjYdvis8n_mRA0RjRgy7AY0yPc,1559
|
|
135
135
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html,sha256=xKQQydQJst6CJT0nH6RPWDXH92tRH_k1EIiPNoHzI1g,460
|
|
136
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja,sha256=
|
|
136
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja,sha256=0cQmd5fMM1Q-zEGIHa1L5VslBEo9089teDnDdx8H2gQ,1827
|
|
137
137
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html,sha256=f4tZCDGQxPeaTMvo95Yipc-t-enuqV42LZ4sKUu4FaM,448
|
|
138
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja,sha256=
|
|
138
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja,sha256=VnRKxWiM9owruCMA35iabkq00j7W8qpTR6VRtrG5dwo,1464
|
|
139
139
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html,sha256=hz4Yr6SufruNEYPlsyS2G18UgHEhXBlBu15B02pXqtY,454
|
|
140
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja,sha256=
|
|
140
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja,sha256=yuZEItIzY_PQeawTqG5S7zBW7pQNYC8Jb0G558lDzW8,1687
|
|
141
141
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html,sha256=_j3bo51bHgMlQa0Gl1KTOndVnrluSfd_uFIEcWvDI-M,451
|
|
142
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja,sha256=
|
|
142
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja,sha256=hYDUAMzIjWMZ8KJ2iyyj0zrE_xQOOHUf3oLvOMyfugk,1664
|
|
143
143
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html,sha256=4lkQoVm9QW3eGrBQ2l9tH8TpmvhSN6qPyOp6Pk6WRks,445
|
|
144
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja,sha256=
|
|
144
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja,sha256=GEMX-I70-ukD5ghGrUi2GT_yWhDHXV0UqkdlNrnJ-hw,1456
|
|
145
145
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html,sha256=-aNSOHi5lvqheUzklSRThN7UeCdsqTHm35CyKi5yaWU,448
|
|
146
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja,sha256=
|
|
146
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja,sha256=wJzAynY2f7Ntmhq3r8MxuiXdAIMGb8izOCcG1ciZrqk,1667
|
|
147
147
|
mkdocstrings_handlers/python/templates/readthedocs/_base/language.html,sha256=Qvw8RvhTvKk3-OobTEOyWsh5yE3WbIWW4meoR4X_5fY,424
|
|
148
148
|
mkdocstrings_handlers/python/templates/readthedocs/_base/language.html.jinja,sha256=gvhC0ie-OtANXQ-S3gMsyyL_Qjr2b93Unrts7NGZoSY,632
|
|
149
149
|
mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html,sha256=E8a7EBeQ1E7HVYzhilVbouqbNJkePhz7amCEJdbRxmQ,436
|
|
@@ -177,7 +177,7 @@ mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja,sha25
|
|
|
177
177
|
mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html,sha256=OuvrkorxuL0gKZNYneann1bwd1Z2i5bBY7SbC496HDw,46
|
|
178
178
|
mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja,sha256=OuvrkorxuL0gKZNYneann1bwd1Z2i5bBY7SbC496HDw,46
|
|
179
179
|
mkdocstrings_handlers/python/templates/readthedocs/style.css,sha256=Ds8vF1rSxc2B0c4P10osx4cqXHWMntcSCxmRfX-nfzw,971
|
|
180
|
-
mkdocstrings_python-1.
|
|
181
|
-
mkdocstrings_python-1.
|
|
182
|
-
mkdocstrings_python-1.
|
|
183
|
-
mkdocstrings_python-1.
|
|
180
|
+
mkdocstrings_python-1.11.0.dist-info/METADATA,sha256=-kJIz7Ck3C3uUoFUVItVMHhSDGNpHuiTnSpgYqADUMc,5587
|
|
181
|
+
mkdocstrings_python-1.11.0.dist-info/WHEEL,sha256=rSwsxJWe3vzyR5HCwjWXQruDgschpei4h_giTm0dJVE,90
|
|
182
|
+
mkdocstrings_python-1.11.0.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
|
|
183
|
+
mkdocstrings_python-1.11.0.dist-info/RECORD,,
|
|
File without changes
|
{mkdocstrings_python-1.10.9.dist-info → mkdocstrings_python-1.11.0.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|