mkdocstrings-python 2.0.5__py3-none-any.whl → 2.0.7__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/__init__.py +2 -0
- mkdocstrings_handlers/python/_internal/handler.py +39 -3
- mkdocstrings_handlers/python/_internal/rendering.py +39 -13
- mkdocstrings_handlers/python/templates/material/_base/class.html.jinja +2 -14
- mkdocstrings_handlers/python/templates/material/_base/function.html.jinja +1 -7
- mkdocstrings_handlers/python/templates/readthedocs/_base/class.html.jinja +2 -14
- {mkdocstrings_python-2.0.5.dist-info → mkdocstrings_python-2.0.7.dist-info}/METADATA +3 -5
- {mkdocstrings_python-2.0.5.dist-info → mkdocstrings_python-2.0.7.dist-info}/RECORD +11 -11
- {mkdocstrings_python-2.0.5.dist-info → mkdocstrings_python-2.0.7.dist-info}/WHEEL +0 -0
- {mkdocstrings_python-2.0.5.dist-info → mkdocstrings_python-2.0.7.dist-info}/entry_points.txt +0 -0
- {mkdocstrings_python-2.0.5.dist-info → mkdocstrings_python-2.0.7.dist-info}/licenses/LICENSE +0 -0
|
@@ -31,6 +31,7 @@ from mkdocstrings_handlers.python._internal.rendering import (
|
|
|
31
31
|
do_format_type_alias,
|
|
32
32
|
do_get_template,
|
|
33
33
|
do_order_members,
|
|
34
|
+
do_source_location,
|
|
34
35
|
do_split_path,
|
|
35
36
|
do_stash_crossref,
|
|
36
37
|
)
|
|
@@ -64,6 +65,7 @@ __all__ = [
|
|
|
64
65
|
"do_format_type_alias",
|
|
65
66
|
"do_get_template",
|
|
66
67
|
"do_order_members",
|
|
68
|
+
"do_source_location",
|
|
67
69
|
"do_split_path",
|
|
68
70
|
"do_stash_crossref",
|
|
69
71
|
"get_handler",
|
|
@@ -3,13 +3,14 @@
|
|
|
3
3
|
from __future__ import annotations
|
|
4
4
|
|
|
5
5
|
import glob
|
|
6
|
+
import inspect
|
|
6
7
|
import os
|
|
7
8
|
import posixpath
|
|
8
9
|
import sys
|
|
9
10
|
from contextlib import suppress
|
|
10
11
|
from dataclasses import asdict
|
|
11
12
|
from pathlib import Path
|
|
12
|
-
from typing import TYPE_CHECKING, Any, BinaryIO, ClassVar
|
|
13
|
+
from typing import TYPE_CHECKING, Any, BinaryIO, Callable, ClassVar
|
|
13
14
|
|
|
14
15
|
from griffe import (
|
|
15
16
|
AliasResolutionError,
|
|
@@ -18,6 +19,10 @@ from griffe import (
|
|
|
18
19
|
ModulesCollection,
|
|
19
20
|
Parser,
|
|
20
21
|
load_extensions,
|
|
22
|
+
parse_auto,
|
|
23
|
+
parse_google,
|
|
24
|
+
parse_numpy,
|
|
25
|
+
parse_sphinx,
|
|
21
26
|
patch_loggers,
|
|
22
27
|
)
|
|
23
28
|
from mkdocs.exceptions import PluginError
|
|
@@ -54,6 +59,34 @@ _logger = get_logger(__name__)
|
|
|
54
59
|
|
|
55
60
|
patch_loggers(get_logger)
|
|
56
61
|
|
|
62
|
+
_PARSER_FUNCTIONS: dict[Parser, Callable] = {
|
|
63
|
+
Parser.auto: parse_auto,
|
|
64
|
+
Parser.google: parse_google,
|
|
65
|
+
Parser.numpy: parse_numpy,
|
|
66
|
+
Parser.sphinx: parse_sphinx,
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
def _filter_parser_options(parser: Parser | None, options: dict[str, Any] | None) -> dict[str, Any] | None:
|
|
71
|
+
"""Filter options unsupported by the selected Griffe parser."""
|
|
72
|
+
if parser is None or options is None:
|
|
73
|
+
return options
|
|
74
|
+
|
|
75
|
+
accepted_options = set(inspect.signature(_PARSER_FUNCTIONS[parser]).parameters) - {"docstring"}
|
|
76
|
+
filtered_options = {}
|
|
77
|
+
for name, value in options.items():
|
|
78
|
+
if name in accepted_options:
|
|
79
|
+
if parser is Parser.auto and name == "per_style_options":
|
|
80
|
+
filtered_options[name] = {
|
|
81
|
+
style: _filter_parser_options(Parser(style), style_options)
|
|
82
|
+
for style, style_options in value.items()
|
|
83
|
+
}
|
|
84
|
+
else:
|
|
85
|
+
filtered_options[name] = value
|
|
86
|
+
else:
|
|
87
|
+
_logger.warning(f"Ignoring unsupported {parser.value} docstring parser option: {name}")
|
|
88
|
+
return filtered_options
|
|
89
|
+
|
|
57
90
|
|
|
58
91
|
class PythonHandler(BaseHandler):
|
|
59
92
|
"""The Python handler class."""
|
|
@@ -195,7 +228,9 @@ class PythonHandler(BaseHandler):
|
|
|
195
228
|
|
|
196
229
|
parser_name = options.docstring_style
|
|
197
230
|
parser = parser_name and Parser(parser_name)
|
|
198
|
-
parser_options
|
|
231
|
+
parser_options: dict[str, Any] | None = None
|
|
232
|
+
if options.docstring_options is not None:
|
|
233
|
+
parser_options = _filter_parser_options(parser, asdict(options.docstring_options))
|
|
199
234
|
|
|
200
235
|
if unknown_module:
|
|
201
236
|
extensions = self.normalize_extension_paths(options.extensions)
|
|
@@ -203,7 +238,7 @@ class PythonHandler(BaseHandler):
|
|
|
203
238
|
extensions=load_extensions(*extensions),
|
|
204
239
|
search_paths=self._paths,
|
|
205
240
|
docstring_parser=parser,
|
|
206
|
-
docstring_options=parser_options,
|
|
241
|
+
docstring_options=parser_options, # type: ignore[arg-type]
|
|
207
242
|
modules_collection=self._modules_collection,
|
|
208
243
|
lines_collection=self._lines_collection,
|
|
209
244
|
allow_inspection=options.allow_inspection,
|
|
@@ -310,6 +345,7 @@ class PythonHandler(BaseHandler):
|
|
|
310
345
|
self.env.filters["filter_objects"] = rendering.do_filter_objects
|
|
311
346
|
self.env.filters["stash_crossref"] = rendering.do_stash_crossref
|
|
312
347
|
self.env.filters["get_template"] = rendering.do_get_template
|
|
348
|
+
self.env.filters["source_location"] = rendering.do_source_location
|
|
313
349
|
self.env.filters["as_attributes_section"] = rendering.do_as_attributes_section
|
|
314
350
|
self.env.filters["as_functions_section"] = rendering.do_as_functions_section
|
|
315
351
|
self.env.filters["as_classes_section"] = rendering.do_as_classes_section
|
|
@@ -11,6 +11,7 @@ from collections import defaultdict
|
|
|
11
11
|
from contextlib import suppress
|
|
12
12
|
from dataclasses import replace
|
|
13
13
|
from functools import lru_cache
|
|
14
|
+
from pathlib import Path
|
|
14
15
|
from re import Pattern
|
|
15
16
|
from typing import TYPE_CHECKING, Any, Callable, ClassVar, Literal, TypeVar
|
|
16
17
|
|
|
@@ -107,7 +108,7 @@ class _StashCrossRefFilter:
|
|
|
107
108
|
|
|
108
109
|
@staticmethod
|
|
109
110
|
def _gen_key(length: int) -> str:
|
|
110
|
-
return "_" + "".join(random.choice(string.ascii_letters + string.digits) for _ in range(max(
|
|
111
|
+
return "_" + "".join(random.choice(string.ascii_letters + string.digits) for _ in range(max(2, length - 1))) # noqa: S311
|
|
111
112
|
|
|
112
113
|
def _gen_stash_key(self, length: int) -> str:
|
|
113
114
|
key = self._gen_key(length)
|
|
@@ -420,22 +421,20 @@ def _keep_object(name: str, filters: Sequence[tuple[Pattern, bool]]) -> bool:
|
|
|
420
421
|
|
|
421
422
|
|
|
422
423
|
def _parents(obj: Alias) -> set[str]:
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
parents.add(parent.final_target.path)
|
|
427
|
-
while parent.parent:
|
|
428
|
-
parent = parent.parent
|
|
424
|
+
parents = {obj.path}
|
|
425
|
+
parent = obj.parent
|
|
426
|
+
while parent is not None:
|
|
429
427
|
parents.add(parent.path)
|
|
430
|
-
if parent
|
|
428
|
+
if isinstance(parent, Alias):
|
|
431
429
|
parents.add(parent.final_target.path)
|
|
430
|
+
parent = parent.parent
|
|
432
431
|
return parents
|
|
433
432
|
|
|
434
433
|
|
|
435
434
|
def _remove_cycles(objects: list[Object | Alias]) -> Iterator[Object | Alias]:
|
|
436
435
|
suppress_errors = suppress(AliasResolutionError, CyclicAliasError)
|
|
437
436
|
for obj in objects:
|
|
438
|
-
if obj
|
|
437
|
+
if isinstance(obj, Alias):
|
|
439
438
|
with suppress_errors:
|
|
440
439
|
if obj.final_target.path in _parents(obj):
|
|
441
440
|
continue
|
|
@@ -592,6 +591,30 @@ def do_get_template(obj: Object | Alias) -> str:
|
|
|
592
591
|
return f"{name}.html.jinja"
|
|
593
592
|
|
|
594
593
|
|
|
594
|
+
def do_source_location(obj: Object | Alias) -> Path:
|
|
595
|
+
"""Get the file path displayed in an object's source block label.
|
|
596
|
+
|
|
597
|
+
Environment paths are never displayed: when the object's file lives in
|
|
598
|
+
a `site-packages` directory (for example a virtual environment inside
|
|
599
|
+
the current working directory), the path below `site-packages` is
|
|
600
|
+
returned instead.
|
|
601
|
+
|
|
602
|
+
Parameters:
|
|
603
|
+
obj: A Griffe object.
|
|
604
|
+
|
|
605
|
+
Returns:
|
|
606
|
+
The file path to display.
|
|
607
|
+
"""
|
|
608
|
+
relative_filepath = obj.relative_filepath
|
|
609
|
+
parts = relative_filepath.parts
|
|
610
|
+
if "site-packages" in parts:
|
|
611
|
+
anchor = len(parts) - 1 - parts[::-1].index("site-packages")
|
|
612
|
+
return Path(*parts[anchor + 1 :])
|
|
613
|
+
if relative_filepath.is_absolute():
|
|
614
|
+
return obj.relative_package_filepath
|
|
615
|
+
return relative_filepath
|
|
616
|
+
|
|
617
|
+
|
|
595
618
|
@pass_context
|
|
596
619
|
def do_as_attributes_section(
|
|
597
620
|
context: Context, # noqa: ARG001
|
|
@@ -784,6 +807,8 @@ class AutorefsHook(AutorefsHookInterface):
|
|
|
784
807
|
obj = self.current_object
|
|
785
808
|
while identifier and identifier[0] == ".":
|
|
786
809
|
identifier = identifier[1:]
|
|
810
|
+
if obj.parent is None:
|
|
811
|
+
break
|
|
787
812
|
obj = obj.parent
|
|
788
813
|
identifier = f"{obj.path}.{identifier}" if identifier else obj.path
|
|
789
814
|
|
|
@@ -814,12 +839,13 @@ class AutorefsHook(AutorefsHookInterface):
|
|
|
814
839
|
"module": "mod",
|
|
815
840
|
}.get(self.current_object.kind.value.lower(), "obj")
|
|
816
841
|
origin = self.current_object.path
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
lineno = self.current_object.docstring.lineno or 0
|
|
820
|
-
except AttributeError:
|
|
842
|
+
docstring = self.current_object.docstring
|
|
843
|
+
if docstring is None or docstring.parent is None:
|
|
821
844
|
filepath = self.current_object.filepath
|
|
822
845
|
lineno = 0
|
|
846
|
+
else:
|
|
847
|
+
filepath = docstring.parent.filepath
|
|
848
|
+
lineno = docstring.lineno or 0
|
|
823
849
|
|
|
824
850
|
return AutorefsHookInterface.Context(
|
|
825
851
|
domain="py",
|
|
@@ -249,26 +249,14 @@ Context:
|
|
|
249
249
|
{% if "__init__" in all_members and all_members["__init__"].source %}
|
|
250
250
|
{% with init = all_members["__init__"] %}
|
|
251
251
|
<details class="mkdocstrings-source">
|
|
252
|
-
<summary>{{ lang.t("Source code in") }} <code>
|
|
253
|
-
{%- if init.relative_filepath.is_absolute() -%}
|
|
254
|
-
{{ init.relative_package_filepath }}
|
|
255
|
-
{%- else -%}
|
|
256
|
-
{{ init.relative_filepath }}
|
|
257
|
-
{%- endif -%}
|
|
258
|
-
</code></summary>
|
|
252
|
+
<summary>{{ lang.t("Source code in") }} <code>{{ init|source_location }}</code></summary>
|
|
259
253
|
{{ init.source|highlight(language="python", linestart=init.lineno or 0, linenums=True) }}
|
|
260
254
|
</details>
|
|
261
255
|
{% endwith %}
|
|
262
256
|
{% endif %}
|
|
263
257
|
{% elif class.source %}
|
|
264
258
|
<details class="mkdocstrings-source">
|
|
265
|
-
<summary>{{ lang.t("Source code in") }} <code>
|
|
266
|
-
{%- if class.relative_filepath.is_absolute() -%}
|
|
267
|
-
{{ class.relative_package_filepath }}
|
|
268
|
-
{%- else -%}
|
|
269
|
-
{{ class.relative_filepath }}
|
|
270
|
-
{%- endif -%}
|
|
271
|
-
</code></summary>
|
|
259
|
+
<summary>{{ lang.t("Source code in") }} <code>{{ class|source_location }}</code></summary>
|
|
272
260
|
{{ class.source|highlight(language="python", linestart=class.lineno or 0, linenums=True) }}
|
|
273
261
|
</details>
|
|
274
262
|
{% endif %}
|
|
@@ -146,13 +146,7 @@ Context:
|
|
|
146
146
|
-#}
|
|
147
147
|
{% if config.show_source and function.source %}
|
|
148
148
|
<details class="mkdocstrings-source">
|
|
149
|
-
<summary>{{ lang.t("Source code in") }} <code>
|
|
150
|
-
{%- if function.relative_filepath.is_absolute() -%}
|
|
151
|
-
{{ function.relative_package_filepath }}
|
|
152
|
-
{%- else -%}
|
|
153
|
-
{{ function.relative_filepath }}
|
|
154
|
-
{%- endif -%}
|
|
155
|
-
</code></summary>
|
|
149
|
+
<summary>{{ lang.t("Source code in") }} <code>{{ function|source_location }}</code></summary>
|
|
156
150
|
{{ function.source|highlight(language="python", linestart=function.lineno or 0, linenums=True) }}
|
|
157
151
|
</details>
|
|
158
152
|
{% endif %}
|
|
@@ -208,26 +208,14 @@ Context:
|
|
|
208
208
|
{% if "__init__" in class.all_members and class.all_members["__init__"].source %}
|
|
209
209
|
{% with init = class.all_members["__init__"] %}
|
|
210
210
|
<details class="quote">
|
|
211
|
-
<summary>Source code in <code>
|
|
212
|
-
{%- if init.relative_filepath.is_absolute() -%}
|
|
213
|
-
{{ init.relative_package_filepath }}
|
|
214
|
-
{%- else -%}
|
|
215
|
-
{{ init.relative_filepath }}
|
|
216
|
-
{%- endif -%}
|
|
217
|
-
</code></summary>
|
|
211
|
+
<summary>Source code in <code>{{ init|source_location }}</code></summary>
|
|
218
212
|
{{ init.source|highlight(language="python", linestart=init.lineno or 0, linenums=True) }}
|
|
219
213
|
</details>
|
|
220
214
|
{% endwith %}
|
|
221
215
|
{% endif %}
|
|
222
216
|
{% elif class.source %}
|
|
223
217
|
<details class="quote">
|
|
224
|
-
<summary>Source code in <code>
|
|
225
|
-
{%- if class.relative_filepath.is_absolute() -%}
|
|
226
|
-
{{ class.relative_package_filepath }}
|
|
227
|
-
{%- else -%}
|
|
228
|
-
{{ class.relative_filepath }}
|
|
229
|
-
{%- endif -%}
|
|
230
|
-
</code></summary>
|
|
218
|
+
<summary>Source code in <code>{{ class|source_location }}</code></summary>
|
|
231
219
|
{{ class.source|highlight(language="python", linestart=class.lineno or 0, linenums=True) }}
|
|
232
220
|
</details>
|
|
233
221
|
{% endif %}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocstrings-python
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.7
|
|
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-Expression: ISC
|
|
@@ -145,7 +145,7 @@ dependencies = [
|
|
|
145
145
|
<a href="https://github.com/BenHammersley"><img alt="BenHammersley" src="https://avatars.githubusercontent.com/u/99436?u=4499a7b507541045222ee28ae122dbe3c8d08ab5&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
146
146
|
<a href="https://github.com/trevorWieland"><img alt="trevorWieland" src="https://avatars.githubusercontent.com/u/28811461?u=74cc0e3756c1d4e3d66b5c396e1d131ea8a10472&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
147
147
|
<a href="https://github.com/MarcoGorelli"><img alt="MarcoGorelli" src="https://avatars.githubusercontent.com/u/33491632?u=7de3a749cac76a60baca9777baf71d043a4f884d&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
148
|
-
<a href="https://github.com/analog-cbarber"><img alt="analog-cbarber" src="https://avatars.githubusercontent.com/u/7408243?u=
|
|
148
|
+
<a href="https://github.com/analog-cbarber"><img alt="analog-cbarber" src="https://avatars.githubusercontent.com/u/7408243?u=fe0e7bf2882d1c9c901a341c2502e1518466527a&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
149
149
|
<a href="https://github.com/OdinManiac"><img alt="OdinManiac" src="https://avatars.githubusercontent.com/u/22727172?u=36ab20970f7f52ae8e7eb67b7fcf491fee01ac22&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
150
150
|
<a href="https://github.com/rstudio-sponsorship"><img alt="rstudio-sponsorship" src="https://avatars.githubusercontent.com/u/58949051?u=0c471515dd18111be30dfb7669ed5e778970959b&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
151
151
|
<a href="https://github.com/schlich"><img alt="schlich" src="https://avatars.githubusercontent.com/u/21191435?u=6f1240adb68f21614d809ae52d66509f46b1e877&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
@@ -157,17 +157,15 @@ dependencies = [
|
|
|
157
157
|
<a href="https://github.com/activeloopai"><img alt="activeloopai" src="https://avatars.githubusercontent.com/u/34816118?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
158
158
|
<a href="https://github.com/roboflow"><img alt="roboflow" src="https://avatars.githubusercontent.com/u/53104118?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
159
159
|
<a href="https://github.com/cmclaughlin"><img alt="cmclaughlin" src="https://avatars.githubusercontent.com/u/1061109?u=ddf6eec0edd2d11c980f8c3aa96e3d044d4e0468&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
160
|
-
<a href="https://github.com/blaisep"><img alt="blaisep" src="https://avatars.githubusercontent.com/u/254456?u=97d584b7c0a6faf583aa59975df4f993f671d121&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
161
160
|
<a href="https://github.com/RapidataAI"><img alt="RapidataAI" src="https://avatars.githubusercontent.com/u/104209891?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
162
161
|
<a href="https://github.com/rodolphebarbanneau"><img alt="rodolphebarbanneau" src="https://avatars.githubusercontent.com/u/46493454?u=6c405452a40c231cdf0b68e97544e07ee956a733&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
163
162
|
<a href="https://github.com/theSymbolSyndicate"><img alt="theSymbolSyndicate" src="https://avatars.githubusercontent.com/u/111542255?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
164
163
|
<a href="https://github.com/blakeNaccarato"><img alt="blakeNaccarato" src="https://avatars.githubusercontent.com/u/20692450?u=bb919218be30cfa994514f4cf39bb2f7cf952df4&v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
165
164
|
<a href="https://github.com/ChargeStorm"><img alt="ChargeStorm" src="https://avatars.githubusercontent.com/u/26000165?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
166
|
-
<a href="https://github.com/Alphadelta14"><img alt="Alphadelta14" src="https://avatars.githubusercontent.com/u/480845?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
167
165
|
<a href="https://github.com/Cusp-AI"><img alt="Cusp-AI" src="https://avatars.githubusercontent.com/u/178170649?v=4" style="height: 32px; border-radius: 100%;"></a>
|
|
168
166
|
</p></div>
|
|
169
167
|
|
|
170
168
|
|
|
171
|
-
*And
|
|
169
|
+
*And 4 more private sponsor(s).*
|
|
172
170
|
|
|
173
171
|
<!-- sponsors-end -->
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
mkdocstrings_handlers/python/__init__.py,sha256=
|
|
1
|
+
mkdocstrings_handlers/python/__init__.py,sha256=nMq6EQFwlnoSHY5FZAS0Fpa-fnb_piBv0yGIW1x13EE,1700
|
|
2
2
|
mkdocstrings_handlers/python/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
mkdocstrings_handlers/python/_internal/config.py,sha256=iSnsL-DXqWSm_0YKv-2giDxTdljxZWvDgTGkCo9GBPg,35261
|
|
4
4
|
mkdocstrings_handlers/python/_internal/debug.py,sha256=A6B3w6LWN22kYtvvbmz7vnh8Pr5hzvtrHhM3-Es8Isg,2882
|
|
5
|
-
mkdocstrings_handlers/python/_internal/handler.py,sha256=
|
|
6
|
-
mkdocstrings_handlers/python/_internal/rendering.py,sha256=
|
|
5
|
+
mkdocstrings_handlers/python/_internal/handler.py,sha256=iYVzWehbTd3vM6K0sJJ-Oqklezv6xsyv0S6SWdGklXo,17047
|
|
6
|
+
mkdocstrings_handlers/python/_internal/rendering.py,sha256=3JnVhlZob-Py5aWu-wDN6nsgAMBtOhyvTSa989J_6rA,29399
|
|
7
7
|
mkdocstrings_handlers/python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
8
|
mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja,sha256=ajtKaGxs9-VJzPNiXbQTYTO6ADq8Ck9M9x2BfXakG0g,4838
|
|
9
9
|
mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja,sha256=k8eX0lyQmmooaEotjYngdXO8RJldjixvZW30S5jGXOA,2109
|
|
10
10
|
mkdocstrings_handlers/python/templates/material/_base/children.html.jinja,sha256=1q7RS0i6SkNriRtGX8BC2wzKhp3pPcLVSJWBEUmZOSg,8153
|
|
11
|
-
mkdocstrings_handlers/python/templates/material/_base/class.html.jinja,sha256=
|
|
11
|
+
mkdocstrings_handlers/python/templates/material/_base/class.html.jinja,sha256=ZSDeKPYttMyTbZ9udURpJ4tGm2Nl7HOMaCJlVoG2wzs,11675
|
|
12
12
|
mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja,sha256=iKi-31JKoHwG7-w3S88A9YTu9kuV6-c9gwKb8bUtXuw,3440
|
|
13
13
|
mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja,sha256=VFwImgb1toxkjWqyhTNFQbyYE3d11yXI___3vpIu2u0,687
|
|
14
14
|
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja,sha256=WVy3pU1KGIhk1rFdADmWydj-KUXZW7STC_OWAl0yFyk,4349
|
|
@@ -26,7 +26,7 @@ mkdocstrings_handlers/python/templates/material/_base/docstring/type_parameters.
|
|
|
26
26
|
mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja,sha256=evSdVXZwKpHIJ7dnCP3njB0DD7rcJPgTPgeG54jRIUE,3612
|
|
27
27
|
mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja,sha256=bo1Fjfw21VZRdf8MPzReIr8sCFPDoBBWQloXJ42IObQ,4699
|
|
28
28
|
mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja,sha256=zjjO_q9oCQCpVx6iR0adfog_lhQ85uM4oHZDJO_sKqU,6592
|
|
29
|
-
mkdocstrings_handlers/python/templates/material/_base/function.html.jinja,sha256=
|
|
29
|
+
mkdocstrings_handlers/python/templates/material/_base/function.html.jinja,sha256=rW-47bNjme32xUWXGmMm6e-eQRsqtjc3BxEQvFxwyL4,6017
|
|
30
30
|
mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja,sha256=mue5CMl2WQpagj3aYqbUiAQX0P72aLCgY3MX_zEpE8s,786
|
|
31
31
|
mkdocstrings_handlers/python/templates/material/_base/language.html.jinja,sha256=7gyknTiapqCM8TjUHdXkQgZMmYwcuy6Ze0pkntE7g8s,617
|
|
32
32
|
mkdocstrings_handlers/python/templates/material/_base/languages/en.html.jinja,sha256=tzS9C3l1c5liALvpYl7dHOGhtoFpRQwMgm_gAVKcv_Y,1731
|
|
@@ -86,7 +86,7 @@ mkdocstrings_handlers/python/templates/material/type_alias.html.jinja,sha256=wQw
|
|
|
86
86
|
mkdocstrings_handlers/python/templates/material/type_parameters.html,sha256=-YLk-DbKYz8wQqar6-KAvzyQHlb7jDtykpWqqqRRa88,49
|
|
87
87
|
mkdocstrings_handlers/python/templates/material/type_parameters.html.jinja,sha256=-YLk-DbKYz8wQqar6-KAvzyQHlb7jDtykpWqqqRRa88,49
|
|
88
88
|
mkdocstrings_handlers/python/templates/readthedocs/_base/class.html,sha256=x0M8Wjk7TC9cgnstMoukLVQvxZUEMFjQA0VJQPEAC9Y,415
|
|
89
|
-
mkdocstrings_handlers/python/templates/readthedocs/_base/class.html.jinja,sha256=
|
|
89
|
+
mkdocstrings_handlers/python/templates/readthedocs/_base/class.html.jinja,sha256=XBJuYmH65zHBIL4SzylZ8jQKGgSzBXUfvdc3ySy2SHA,9135
|
|
90
90
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja,sha256=Bq7zsZqREC_VkZpbxS0gJlNG46FPyvaYZAJYAVUijPU,1535
|
|
91
91
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja,sha256=t6hWw_CvWQHfLO0EIggXImg4YBarC97HgXBGOLwdjc0,1580
|
|
92
92
|
mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja,sha256=eQFg4aSUNpl8m7Cp_gQHbgsir2aV9nCDUroZWZ4seFQ,1873
|
|
@@ -114,8 +114,8 @@ mkdocstrings_handlers/python/templates/readthedocs/languages/en.html.jinja,sha25
|
|
|
114
114
|
mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja,sha256=e_DPZvMvaaJm0QyjTxW8SkBEbhMXBgBiMrLJ1osAwZc,46
|
|
115
115
|
mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja,sha256=OuvrkorxuL0gKZNYneann1bwd1Z2i5bBY7SbC496HDw,46
|
|
116
116
|
mkdocstrings_handlers/python/templates/readthedocs/style.css,sha256=Ds8vF1rSxc2B0c4P10osx4cqXHWMntcSCxmRfX-nfzw,971
|
|
117
|
-
mkdocstrings_python-2.0.
|
|
118
|
-
mkdocstrings_python-2.0.
|
|
119
|
-
mkdocstrings_python-2.0.
|
|
120
|
-
mkdocstrings_python-2.0.
|
|
121
|
-
mkdocstrings_python-2.0.
|
|
117
|
+
mkdocstrings_python-2.0.7.dist-info/METADATA,sha256=x-BFx6xsNyyDXiBczY9WGADLEQF60QaOjKCkWT1ggwk,12384
|
|
118
|
+
mkdocstrings_python-2.0.7.dist-info/WHEEL,sha256=VP-D4TPS230sME9Z3vb3INXvo1yt0924YRm5AOsk_dE,90
|
|
119
|
+
mkdocstrings_python-2.0.7.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
120
|
+
mkdocstrings_python-2.0.7.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
|
|
121
|
+
mkdocstrings_python-2.0.7.dist-info/RECORD,,
|
|
File without changes
|
{mkdocstrings_python-2.0.5.dist-info → mkdocstrings_python-2.0.7.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{mkdocstrings_python-2.0.5.dist-info → mkdocstrings_python-2.0.7.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|