mkdocstrings-python 1.16.6__py3-none-any.whl → 1.16.8__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/_internal/config.py +28 -6
- mkdocstrings_handlers/python/_internal/rendering.py +67 -21
- mkdocstrings_handlers/python/templates/material/_base/children.html.jinja +5 -5
- {mkdocstrings_python-1.16.6.dist-info → mkdocstrings_python-1.16.8.dist-info}/METADATA +2 -2
- {mkdocstrings_python-1.16.6.dist-info → mkdocstrings_python-1.16.8.dist-info}/RECORD +8 -8
- {mkdocstrings_python-1.16.6.dist-info → mkdocstrings_python-1.16.8.dist-info}/WHEEL +0 -0
- {mkdocstrings_python-1.16.6.dist-info → mkdocstrings_python-1.16.8.dist-info}/entry_points.txt +0 -0
- {mkdocstrings_python-1.16.6.dist-info → mkdocstrings_python-1.16.8.dist-info}/licenses/LICENSE +0 -0
|
@@ -9,6 +9,8 @@ from typing import TYPE_CHECKING, Annotated, Any, Literal
|
|
|
9
9
|
|
|
10
10
|
from mkdocstrings import get_logger
|
|
11
11
|
|
|
12
|
+
from mkdocstrings_handlers.python._internal.rendering import Order # noqa: TC001
|
|
13
|
+
|
|
12
14
|
# YORE: EOL 3.10: Replace block with line 2.
|
|
13
15
|
if sys.version_info >= (3, 11):
|
|
14
16
|
from typing import Self
|
|
@@ -432,14 +434,24 @@ class PythonInputOptions:
|
|
|
432
434
|
] = field(default_factory=list)
|
|
433
435
|
|
|
434
436
|
filters: Annotated[
|
|
435
|
-
list[str],
|
|
437
|
+
list[str] | Literal["public"],
|
|
436
438
|
_Field(
|
|
437
439
|
group="members",
|
|
438
|
-
description="""A list of filters
|
|
440
|
+
description="""A list of filters, or `"public"`.
|
|
441
|
+
|
|
442
|
+
**List of filters**
|
|
439
443
|
|
|
440
444
|
A filter starting with `!` will exclude matching objects instead of including them.
|
|
441
445
|
The `members` option takes precedence over `filters` (filters will still be applied recursively
|
|
442
446
|
to lower members in the hierarchy).
|
|
447
|
+
|
|
448
|
+
**Filtering methods**
|
|
449
|
+
|
|
450
|
+
[:octicons-heart-fill-24:{ .pulse } Sponsors only](../insiders/index.md){ .insiders } —
|
|
451
|
+
[:octicons-tag-24: Insiders 1.11.0](../insiders/changelog.md#1.11.0)
|
|
452
|
+
|
|
453
|
+
The `public` method will include only public objects:
|
|
454
|
+
those added to `__all__` or not starting with an underscore (except for special methods/attributes).
|
|
443
455
|
""",
|
|
444
456
|
),
|
|
445
457
|
] = field(default_factory=lambda: _DEFAULT_FILTERS.copy())
|
|
@@ -510,13 +522,18 @@ class PythonInputOptions:
|
|
|
510
522
|
] = None
|
|
511
523
|
|
|
512
524
|
members_order: Annotated[
|
|
513
|
-
|
|
525
|
+
Order | list[Order],
|
|
514
526
|
_Field(
|
|
515
527
|
group="members",
|
|
516
528
|
description="""The members ordering to use.
|
|
517
529
|
|
|
518
|
-
- `
|
|
530
|
+
- `__all__`: order members according to `__all__` module attributes, if declared;
|
|
531
|
+
- `alphabetical`: order members alphabetically;
|
|
519
532
|
- `source`: order members as they appear in the source file.
|
|
533
|
+
|
|
534
|
+
Since `__all__` is a module-only attribute, it can't be used to sort class members,
|
|
535
|
+
therefore the `members_order` option accepts a list of ordering methods,
|
|
536
|
+
indicating ordering preferences.
|
|
520
537
|
""",
|
|
521
538
|
),
|
|
522
539
|
] = "alphabetical"
|
|
@@ -916,12 +933,12 @@ class PythonInputOptions:
|
|
|
916
933
|
class PythonOptions(PythonInputOptions): # type: ignore[override,unused-ignore]
|
|
917
934
|
"""Final options passed as template context."""
|
|
918
935
|
|
|
919
|
-
filters: list[tuple[re.Pattern, bool]] = field( # type: ignore[assignment]
|
|
936
|
+
filters: list[tuple[re.Pattern, bool]] | Literal["public"] = field( # type: ignore[assignment]
|
|
920
937
|
default_factory=lambda: [
|
|
921
938
|
(re.compile(filtr.removeprefix("!")), filtr.startswith("!")) for filtr in _DEFAULT_FILTERS
|
|
922
939
|
],
|
|
923
940
|
)
|
|
924
|
-
"""A list of filters
|
|
941
|
+
"""A list of filters, or `"public"`."""
|
|
925
942
|
|
|
926
943
|
summary: SummaryOption = field(default_factory=SummaryOption)
|
|
927
944
|
"""Whether to render summaries of modules, classes, functions (methods) and attributes."""
|
|
@@ -930,6 +947,11 @@ class PythonOptions(PythonInputOptions): # type: ignore[override,unused-ignore]
|
|
|
930
947
|
def coerce(cls, **data: Any) -> MutableMapping[str, Any]:
|
|
931
948
|
"""Create an instance from a dictionary."""
|
|
932
949
|
if "filters" in data:
|
|
950
|
+
# Non-insiders: transform back to default filters.
|
|
951
|
+
# Next: `if "filters" in data and not isinstance(data["filters"], str):`.
|
|
952
|
+
if data["filters"] == "public":
|
|
953
|
+
data["filters"] = _DEFAULT_FILTERS
|
|
954
|
+
# Filters are `None` or a sequence of strings (tests use tuples).
|
|
933
955
|
data["filters"] = [
|
|
934
956
|
(re.compile(filtr.removeprefix("!")), filtr.startswith("!")) for filtr in data["filters"] or ()
|
|
935
957
|
]
|
|
@@ -9,6 +9,7 @@ import subprocess
|
|
|
9
9
|
import sys
|
|
10
10
|
import warnings
|
|
11
11
|
from collections import defaultdict
|
|
12
|
+
from contextlib import suppress
|
|
12
13
|
from dataclasses import replace
|
|
13
14
|
from functools import lru_cache
|
|
14
15
|
from pathlib import Path
|
|
@@ -17,6 +18,8 @@ from typing import TYPE_CHECKING, Any, Callable, ClassVar, Literal, TypeVar
|
|
|
17
18
|
|
|
18
19
|
from griffe import (
|
|
19
20
|
Alias,
|
|
21
|
+
AliasResolutionError,
|
|
22
|
+
CyclicAliasError,
|
|
20
23
|
DocstringAttribute,
|
|
21
24
|
DocstringClass,
|
|
22
25
|
DocstringFunction,
|
|
@@ -43,26 +46,35 @@ if TYPE_CHECKING:
|
|
|
43
46
|
_logger = get_logger(__name__)
|
|
44
47
|
|
|
45
48
|
|
|
46
|
-
def _sort_key_alphabetical(item: CollectorItem) ->
|
|
47
|
-
# chr(sys.maxunicode) is a string that contains the final unicode
|
|
48
|
-
#
|
|
49
|
-
# the end of the list.
|
|
49
|
+
def _sort_key_alphabetical(item: CollectorItem) -> str:
|
|
50
|
+
# `chr(sys.maxunicode)` is a string that contains the final unicode character,
|
|
51
|
+
# so if `name` isn't found on the object, the item will go to the end of the list.
|
|
50
52
|
return item.name or chr(sys.maxunicode)
|
|
51
53
|
|
|
52
54
|
|
|
53
|
-
def _sort_key_source(item: CollectorItem) ->
|
|
54
|
-
#
|
|
55
|
+
def _sort_key_source(item: CollectorItem) -> float:
|
|
56
|
+
# If `lineno` is none, the item will go to the end of the list.
|
|
55
57
|
if item.is_alias:
|
|
56
|
-
return item.alias_lineno if item.alias_lineno is not None else
|
|
57
|
-
return item.lineno if item.lineno is not None else
|
|
58
|
+
return item.alias_lineno if item.alias_lineno is not None else float("inf")
|
|
59
|
+
return item.lineno if item.lineno is not None else float("inf")
|
|
58
60
|
|
|
59
61
|
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
+
def _sort__all__(item: CollectorItem) -> float: # noqa: ARG001
|
|
63
|
+
raise ValueError("Not implemented in public version of mkdocstrings-python")
|
|
62
64
|
|
|
63
|
-
|
|
65
|
+
|
|
66
|
+
Order = Literal["__all__", "alphabetical", "source"]
|
|
67
|
+
"""Ordering methods.
|
|
68
|
+
|
|
69
|
+
- `__all__`: order members according to `__all__` module attributes, if declared;
|
|
70
|
+
- `alphabetical`: order members alphabetically;
|
|
71
|
+
- `source`: order members as they appear in the source file.
|
|
72
|
+
"""
|
|
73
|
+
|
|
74
|
+
_order_map: dict[str, Callable[[Object | Alias], str | float]] = {
|
|
64
75
|
"alphabetical": _sort_key_alphabetical,
|
|
65
76
|
"source": _sort_key_source,
|
|
77
|
+
"__all__": _sort__all__,
|
|
66
78
|
}
|
|
67
79
|
|
|
68
80
|
|
|
@@ -148,7 +160,7 @@ def do_format_signature(
|
|
|
148
160
|
The same code, formatted.
|
|
149
161
|
"""
|
|
150
162
|
env = context.environment
|
|
151
|
-
# YORE: Bump 2: Replace `do_get_template(env, "signature")` with `"signature.html.jinja"
|
|
163
|
+
# YORE: Bump 2: Replace `do_get_template(env, "signature")` with `"signature.html.jinja"` within line.
|
|
152
164
|
template = env.get_template(do_get_template(env, "signature"))
|
|
153
165
|
|
|
154
166
|
if annotations is None:
|
|
@@ -208,7 +220,7 @@ def do_format_attribute(
|
|
|
208
220
|
The same code, formatted.
|
|
209
221
|
"""
|
|
210
222
|
env = context.environment
|
|
211
|
-
# YORE: Bump 2: Replace `do_get_template(env, "expression")` with `"expression.html.jinja"
|
|
223
|
+
# YORE: Bump 2: Replace `do_get_template(env, "expression")` with `"expression.html.jinja"` within line.
|
|
212
224
|
template = env.get_template(do_get_template(env, "expression"))
|
|
213
225
|
annotations = context.parent["config"].show_signature_annotations
|
|
214
226
|
|
|
@@ -246,7 +258,7 @@ def do_format_attribute(
|
|
|
246
258
|
|
|
247
259
|
def do_order_members(
|
|
248
260
|
members: Sequence[Object | Alias],
|
|
249
|
-
order: Order,
|
|
261
|
+
order: Order | list[Order],
|
|
250
262
|
members_list: bool | list[str] | None,
|
|
251
263
|
) -> Sequence[Object | Alias]:
|
|
252
264
|
"""Order members given an ordering method.
|
|
@@ -266,7 +278,12 @@ def do_order_members(
|
|
|
266
278
|
if name in members_dict:
|
|
267
279
|
sorted_members.append(members_dict[name])
|
|
268
280
|
return sorted_members
|
|
269
|
-
|
|
281
|
+
if isinstance(order, str):
|
|
282
|
+
order = [order]
|
|
283
|
+
for method in order:
|
|
284
|
+
with suppress(ValueError):
|
|
285
|
+
return sorted(members, key=_order_map[method])
|
|
286
|
+
return members
|
|
270
287
|
|
|
271
288
|
|
|
272
289
|
# YORE: Bump 2: Remove block.
|
|
@@ -396,10 +413,33 @@ def _keep_object(name: str, filters: Sequence[tuple[Pattern, bool]]) -> bool:
|
|
|
396
413
|
return keep
|
|
397
414
|
|
|
398
415
|
|
|
416
|
+
def _parents(obj: Alias) -> set[str]:
|
|
417
|
+
parent: Object | Alias = obj.parent # type: ignore[assignment]
|
|
418
|
+
parents = {obj.path, parent.path}
|
|
419
|
+
if parent.is_alias:
|
|
420
|
+
parents.add(parent.final_target.path) # type: ignore[union-attr]
|
|
421
|
+
while parent.parent:
|
|
422
|
+
parent = parent.parent
|
|
423
|
+
parents.add(parent.path)
|
|
424
|
+
if parent.is_alias:
|
|
425
|
+
parents.add(parent.final_target.path) # type: ignore[union-attr]
|
|
426
|
+
return parents
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
def _remove_cycles(objects: list[Object | Alias]) -> Iterator[Object | Alias]:
|
|
430
|
+
suppress_errors = suppress(AliasResolutionError, CyclicAliasError)
|
|
431
|
+
for obj in objects:
|
|
432
|
+
if obj.is_alias:
|
|
433
|
+
with suppress_errors:
|
|
434
|
+
if obj.final_target.path in _parents(obj): # type: ignore[arg-type,union-attr]
|
|
435
|
+
continue
|
|
436
|
+
yield obj
|
|
437
|
+
|
|
438
|
+
|
|
399
439
|
def do_filter_objects(
|
|
400
440
|
objects_dictionary: dict[str, Object | Alias],
|
|
401
441
|
*,
|
|
402
|
-
filters: Sequence[tuple[Pattern, bool]] | None = None,
|
|
442
|
+
filters: Sequence[tuple[Pattern, bool]] | Literal["public"] | None = None,
|
|
403
443
|
members_list: bool | list[str] | None = None,
|
|
404
444
|
inherited_members: bool | list[str] = False,
|
|
405
445
|
keep_no_docstrings: bool = True,
|
|
@@ -408,7 +448,7 @@ def do_filter_objects(
|
|
|
408
448
|
|
|
409
449
|
Parameters:
|
|
410
450
|
objects_dictionary: The dictionary of objects.
|
|
411
|
-
filters: Filters to apply, based on members' names
|
|
451
|
+
filters: Filters to apply, based on members' names, or `"public"`.
|
|
412
452
|
Each element is a tuple: a pattern, and a boolean indicating whether
|
|
413
453
|
to reject the object if the pattern matches.
|
|
414
454
|
members_list: An optional, explicit list of members to keep.
|
|
@@ -449,14 +489,20 @@ def do_filter_objects(
|
|
|
449
489
|
]
|
|
450
490
|
|
|
451
491
|
# Use filters and docstrings.
|
|
452
|
-
if filters:
|
|
492
|
+
if filters == "public":
|
|
493
|
+
objects = [obj for obj in objects if obj.is_public]
|
|
494
|
+
elif filters:
|
|
453
495
|
objects = [
|
|
454
496
|
obj for obj in objects if _keep_object(obj.name, filters) or (inherited_members_specified and obj.inherited)
|
|
455
497
|
]
|
|
456
|
-
if keep_no_docstrings:
|
|
457
|
-
|
|
498
|
+
if not keep_no_docstrings:
|
|
499
|
+
objects = [obj for obj in objects if obj.has_docstrings or (inherited_members_specified and obj.inherited)]
|
|
500
|
+
|
|
501
|
+
# Prevent infinite recursion.
|
|
502
|
+
if objects:
|
|
503
|
+
objects = list(_remove_cycles(objects))
|
|
458
504
|
|
|
459
|
-
return
|
|
505
|
+
return objects
|
|
460
506
|
|
|
461
507
|
|
|
462
508
|
@lru_cache(maxsize=1)
|
|
@@ -49,7 +49,7 @@ Context:
|
|
|
49
49
|
{% endif %}
|
|
50
50
|
{% with heading_level = heading_level + extra_level %}
|
|
51
51
|
{% for attribute in attributes|order_members(config.members_order, members_list) %}
|
|
52
|
-
{% if members_list is not none or (not attribute.is_imported or attribute.is_public) %}
|
|
52
|
+
{% if config.filters == "public" or members_list is not none or (not attribute.is_imported or attribute.is_public) %}
|
|
53
53
|
{% include attribute|get_template with context %}
|
|
54
54
|
{% endif %}
|
|
55
55
|
{% endfor %}
|
|
@@ -69,7 +69,7 @@ Context:
|
|
|
69
69
|
{% endif %}
|
|
70
70
|
{% with heading_level = heading_level + extra_level %}
|
|
71
71
|
{% for class in classes|order_members(config.members_order, members_list) %}
|
|
72
|
-
{% if members_list is not none or (not class.is_imported or class.is_public) %}
|
|
72
|
+
{% if config.filters == "public" or members_list is not none or (not class.is_imported or class.is_public) %}
|
|
73
73
|
{% include class|get_template with context %}
|
|
74
74
|
{% endif %}
|
|
75
75
|
{% endfor %}
|
|
@@ -90,7 +90,7 @@ Context:
|
|
|
90
90
|
{% with heading_level = heading_level + extra_level %}
|
|
91
91
|
{% for function in functions|order_members(config.members_order, members_list) %}
|
|
92
92
|
{% if not (obj.kind.value == "class" and function.name == "__init__" and config.merge_init_into_class) %}
|
|
93
|
-
{% if members_list is not none or (not function.is_imported or function.is_public) %}
|
|
93
|
+
{% if config.filters == "public" or members_list is not none or (not function.is_imported or function.is_public) %}
|
|
94
94
|
{% include function|get_template with context %}
|
|
95
95
|
{% endif %}
|
|
96
96
|
{% endif %}
|
|
@@ -112,7 +112,7 @@ Context:
|
|
|
112
112
|
{% endif %}
|
|
113
113
|
{% with heading_level = heading_level + extra_level %}
|
|
114
114
|
{% for module in modules|order_members("alphabetical", members_list) %}
|
|
115
|
-
{% if members_list is not none or (not module.is_alias or module.is_public) %}
|
|
115
|
+
{% if config.filters == "public" or members_list is not none or (not module.is_alias or module.is_public) %}
|
|
116
116
|
{% include module|get_template with context %}
|
|
117
117
|
{% endif %}
|
|
118
118
|
{% endfor %}
|
|
@@ -137,7 +137,7 @@ Context:
|
|
|
137
137
|
|
|
138
138
|
{% if not (obj.is_class and child.name == "__init__" and config.merge_init_into_class) %}
|
|
139
139
|
|
|
140
|
-
{% if members_list is not none or child.is_public %}
|
|
140
|
+
{% if config.filters == "public" or members_list is not none or child.is_public %}
|
|
141
141
|
{% if child.is_attribute %}
|
|
142
142
|
{% with attribute = child %}
|
|
143
143
|
{% include attribute|get_template with context %}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocstrings-python
|
|
3
|
-
Version: 1.16.
|
|
3
|
+
Version: 1.16.8
|
|
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
|
|
@@ -32,7 +32,7 @@ Project-URL: Funding, https://github.com/sponsors/pawamoy
|
|
|
32
32
|
Requires-Python: >=3.9
|
|
33
33
|
Requires-Dist: mkdocstrings>=0.28.3
|
|
34
34
|
Requires-Dist: mkdocs-autorefs>=1.4
|
|
35
|
-
Requires-Dist: griffe>=
|
|
35
|
+
Requires-Dist: griffe>=1.6.2
|
|
36
36
|
Requires-Dist: typing-extensions>=4.0; python_version < "3.11"
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
mkdocstrings_handlers/python/__init__.py,sha256=lg-XSQYS-o5J9_jBU35SA7rCW54CK0JsNcrSgsCfW2k,1614
|
|
2
2
|
mkdocstrings_handlers/python/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
mkdocstrings_handlers/python/_internal/config.py,sha256=
|
|
3
|
+
mkdocstrings_handlers/python/_internal/config.py,sha256=JR6GVLLdVpCyCzjpJpFIY_bsQwQmo76PSlZCx28bUbQ,33469
|
|
4
4
|
mkdocstrings_handlers/python/_internal/debug.py,sha256=KnkMM_XSjcE0-9U86AZPucS2hsCD6Rfn_BgMs7_xc3U,2845
|
|
5
5
|
mkdocstrings_handlers/python/_internal/handler.py,sha256=FqIQzxz8k1COAlCzNlKlTzDlbEctXq77kaCxfl2-ILI,15976
|
|
6
|
-
mkdocstrings_handlers/python/_internal/rendering.py,sha256=
|
|
6
|
+
mkdocstrings_handlers/python/_internal/rendering.py,sha256=HeRIgG8g7eeqfZLx9bOavLmKgDtlMW_FuzWvP_k2epU,26493
|
|
7
7
|
mkdocstrings_handlers/python/config.py,sha256=gDuOF8vYwo00opwtObQ55WQq2ECynirwcaGnd0VCHg4,477
|
|
8
8
|
mkdocstrings_handlers/python/handler.py,sha256=xZnhzVC_y6ni3eX_RRO8132ED7DqXqU7IjA6sm8lCk8,480
|
|
9
9
|
mkdocstrings_handlers/python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -12,7 +12,7 @@ mkdocstrings_handlers/python/templates/material/_base/attribute.html,sha256=M_eH
|
|
|
12
12
|
mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja,sha256=1XPaM8_PgtyP_3dB66N3-ujTkaBfqoQ_tD4k9cIy2mQ,4754
|
|
13
13
|
mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja,sha256=FFrvIa-KH-DhT1cpc9HL0ecShR2gUVGs3VT9c1q88z8,467
|
|
14
14
|
mkdocstrings_handlers/python/templates/material/_base/children.html,sha256=EQuTDoMRrICrieD62VZ9Ay-tw3sJQe4Jh7yDnFe1zFk,307
|
|
15
|
-
mkdocstrings_handlers/python/templates/material/_base/children.html.jinja,sha256=
|
|
15
|
+
mkdocstrings_handlers/python/templates/material/_base/children.html.jinja,sha256=JKQtXVemw8SJ1lPbCw_BNUKDnbtvnqzmC5cwhiYqxow,6541
|
|
16
16
|
mkdocstrings_handlers/python/templates/material/_base/class.html,sha256=phAElLOLdaCRMW7uv1G5ePW3deavBpCp29OsK2Njn6E,298
|
|
17
17
|
mkdocstrings_handlers/python/templates/material/_base/class.html.jinja,sha256=7dELSZWSA7cRMLxS_tkIQ_te76aWrfbqRaebsG2ozU0,9633
|
|
18
18
|
mkdocstrings_handlers/python/templates/material/_base/docstring.html,sha256=x2JcxMNtM0xc1qZv1cKJQv4svNXyFThtKLJ66YqFHAQ,310
|
|
@@ -184,8 +184,8 @@ mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja,sha25
|
|
|
184
184
|
mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html,sha256=OIRkMlzFJ_wlXFzB96874tz6zn8UVFpEQX2hQJru2ug,79
|
|
185
185
|
mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja,sha256=OuvrkorxuL0gKZNYneann1bwd1Z2i5bBY7SbC496HDw,46
|
|
186
186
|
mkdocstrings_handlers/python/templates/readthedocs/style.css,sha256=Ds8vF1rSxc2B0c4P10osx4cqXHWMntcSCxmRfX-nfzw,971
|
|
187
|
-
mkdocstrings_python-1.16.
|
|
188
|
-
mkdocstrings_python-1.16.
|
|
189
|
-
mkdocstrings_python-1.16.
|
|
190
|
-
mkdocstrings_python-1.16.
|
|
191
|
-
mkdocstrings_python-1.16.
|
|
187
|
+
mkdocstrings_python-1.16.8.dist-info/METADATA,sha256=hHVMSm5LbNhVPfh3so46jjrVLkiqPHWxTn6oDSTVQMI,5606
|
|
188
|
+
mkdocstrings_python-1.16.8.dist-info/WHEEL,sha256=thaaA2w1JzcGC48WYufAs8nrYZjJm8LqNfnXFOFyCC4,90
|
|
189
|
+
mkdocstrings_python-1.16.8.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
190
|
+
mkdocstrings_python-1.16.8.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
|
|
191
|
+
mkdocstrings_python-1.16.8.dist-info/RECORD,,
|
|
File without changes
|
{mkdocstrings_python-1.16.6.dist-info → mkdocstrings_python-1.16.8.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{mkdocstrings_python-1.16.6.dist-info → mkdocstrings_python-1.16.8.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|