mkdocstrings-python 1.6.2__py3-none-any.whl → 1.6.3__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 +8 -2
- mkdocstrings_handlers/python/rendering.py +5 -2
- mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +1 -1
- mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html +1 -1
- mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html +1 -1
- {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/METADATA +1 -1
- {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/RECORD +21 -21
- {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/WHEEL +0 -0
- {mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -108,7 +108,6 @@ class PythonHandler(BaseHandler):
|
|
|
108
108
|
"filters": ["!^_[^_]"],
|
|
109
109
|
"annotations_path": "brief",
|
|
110
110
|
"preload_modules": None,
|
|
111
|
-
"load_external_modules": False,
|
|
112
111
|
"allow_inspection": True,
|
|
113
112
|
}
|
|
114
113
|
"""
|
|
@@ -189,6 +188,7 @@ class PythonHandler(BaseHandler):
|
|
|
189
188
|
config_file_path: str | None = None,
|
|
190
189
|
paths: list[str] | None = None,
|
|
191
190
|
locale: str = "en",
|
|
191
|
+
load_external_modules: bool = False,
|
|
192
192
|
**kwargs: Any,
|
|
193
193
|
) -> None:
|
|
194
194
|
"""Initialize the handler.
|
|
@@ -198,10 +198,12 @@ class PythonHandler(BaseHandler):
|
|
|
198
198
|
config_file_path: The MkDocs configuration file path.
|
|
199
199
|
paths: A list of paths to use as Griffe search paths.
|
|
200
200
|
locale: The locale to use when rendering content.
|
|
201
|
+
load_external_modules: Load external modules when resolving aliases.
|
|
201
202
|
**kwargs: Same thing, but with keyword arguments.
|
|
202
203
|
"""
|
|
203
204
|
super().__init__(*args, **kwargs)
|
|
204
205
|
self._config_file_path = config_file_path
|
|
206
|
+
self._load_external_modules = load_external_modules
|
|
205
207
|
paths = paths or []
|
|
206
208
|
glob_base_dir = os.path.dirname(os.path.abspath(config_file_path)) if config_file_path else "."
|
|
207
209
|
with chdir(glob_base_dir):
|
|
@@ -282,7 +284,7 @@ class PythonHandler(BaseHandler):
|
|
|
282
284
|
raise CollectionError(str(error)) from error
|
|
283
285
|
unresolved, iterations = loader.resolve_aliases(
|
|
284
286
|
implicit=False,
|
|
285
|
-
external=
|
|
287
|
+
external=self._load_external_modules,
|
|
286
288
|
)
|
|
287
289
|
if unresolved:
|
|
288
290
|
logger.debug(f"{len(unresolved)} aliases were still unresolved after {iterations} iterations")
|
|
@@ -372,11 +374,13 @@ class PythonHandler(BaseHandler):
|
|
|
372
374
|
|
|
373
375
|
|
|
374
376
|
def get_handler(
|
|
377
|
+
*,
|
|
375
378
|
theme: str,
|
|
376
379
|
custom_templates: str | None = None,
|
|
377
380
|
config_file_path: str | None = None,
|
|
378
381
|
paths: list[str] | None = None,
|
|
379
382
|
locale: str = "en",
|
|
383
|
+
load_external_modules: bool = False,
|
|
380
384
|
**config: Any, # noqa: ARG001
|
|
381
385
|
) -> PythonHandler:
|
|
382
386
|
"""Simply return an instance of `PythonHandler`.
|
|
@@ -387,6 +391,7 @@ def get_handler(
|
|
|
387
391
|
config_file_path: The MkDocs configuration file path.
|
|
388
392
|
paths: A list of paths to use as Griffe search paths.
|
|
389
393
|
locale: The locale to use when rendering content.
|
|
394
|
+
load_external_modules: Load external modules when resolving aliases.
|
|
390
395
|
**config: Configuration passed to the handler.
|
|
391
396
|
|
|
392
397
|
Returns:
|
|
@@ -399,4 +404,5 @@ def get_handler(
|
|
|
399
404
|
config_file_path=config_file_path,
|
|
400
405
|
paths=paths,
|
|
401
406
|
locale=locale,
|
|
407
|
+
load_external_modules=load_external_modules,
|
|
402
408
|
)
|
|
@@ -351,14 +351,17 @@ def do_filter_objects(
|
|
|
351
351
|
@lru_cache(maxsize=1)
|
|
352
352
|
def _get_black_formatter() -> Callable[[str, int], str]:
|
|
353
353
|
try:
|
|
354
|
-
from black import Mode, format_str
|
|
354
|
+
from black import InvalidInput, Mode, format_str
|
|
355
355
|
except ModuleNotFoundError:
|
|
356
356
|
logger.info("Formatting signatures requires Black to be installed.")
|
|
357
357
|
return lambda text, _: text
|
|
358
358
|
|
|
359
359
|
def formatter(code: str, line_length: int) -> str:
|
|
360
360
|
mode = Mode(line_length=line_length)
|
|
361
|
-
|
|
361
|
+
try:
|
|
362
|
+
return format_str(code, mode=mode)
|
|
363
|
+
except InvalidInput:
|
|
364
|
+
return code
|
|
362
365
|
|
|
363
366
|
return formatter
|
|
364
367
|
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
<ul>
|
|
41
41
|
{% for attribute in section.value %}
|
|
42
42
|
<li class="field-body">
|
|
43
|
-
<b>{{ attribute.name }}</b>
|
|
43
|
+
<b><code>{{ attribute.name }}</code></b>
|
|
44
44
|
{% if attribute.annotation %}
|
|
45
45
|
{% with expression = attribute.annotation %}
|
|
46
46
|
(<code>{% include "expression.html" with context %}</code>)
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
{% for function in section.value %}
|
|
36
36
|
{% if not function.name == "__init__" or not config.merge_init_into_class %}
|
|
37
37
|
<li class="field-body">
|
|
38
|
-
<b>{{ function.name }}</b>
|
|
38
|
+
<b><code>{{ function.name }}</code></b>
|
|
39
39
|
–
|
|
40
40
|
<div class="doc-md-description">
|
|
41
41
|
{{ function.description|convert_markdown(heading_level, html_id) }}
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
<ul>
|
|
41
41
|
{% for parameter in section.value %}
|
|
42
42
|
<li class="field-body">
|
|
43
|
-
<b>{{ parameter.name }}</b>
|
|
43
|
+
<b><code>{{ parameter.name }}</code></b>
|
|
44
44
|
{% if parameter.annotation %}
|
|
45
45
|
{% with expression = parameter.annotation %}
|
|
46
46
|
(<code>{% include "expression.html" with context %}</code>)
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
<ul>
|
|
51
51
|
{% for parameter in section.value %}
|
|
52
52
|
<li class="field-body">
|
|
53
|
-
<b>{{ parameter.name }}</b>
|
|
53
|
+
<b><code>{{ parameter.name }}</code></b>
|
|
54
54
|
{% if parameter.annotation %}
|
|
55
55
|
{% with expression = parameter.annotation %}
|
|
56
56
|
(<code>{% include "expression.html" with context %}</code>
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<ul>
|
|
42
42
|
{% for receives in section.value %}
|
|
43
43
|
<li class="field-body">
|
|
44
|
-
{% if receives.name %}<b>{{ receives.name }}</b>{% endif %}
|
|
44
|
+
{% if receives.name %}<b><code>{{ receives.name }}</code></b>{% endif %}
|
|
45
45
|
{% if receives.annotation %}
|
|
46
46
|
{% with expression = receives.annotation %}
|
|
47
47
|
{% if receives.name %} ({% endif %}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<ul>
|
|
42
42
|
{% for returns in section.value %}
|
|
43
43
|
<li class="field-body">
|
|
44
|
-
{% if returns.name %}<b>{{ returns.name }}</b>{% endif %}
|
|
44
|
+
{% if returns.name %}<b><code>{{ returns.name }}</code></b>{% endif %}
|
|
45
45
|
{% if returns.annotation %}
|
|
46
46
|
{% with expression = returns.annotation %}
|
|
47
47
|
{% if returns.name %} ({% endif %}
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
<ul>
|
|
42
42
|
{% for yields in section.value %}
|
|
43
43
|
<li class="field-body">
|
|
44
|
-
{% if yields.name %}<b>{{ yields.name }}</b>{% endif %}
|
|
44
|
+
{% if yields.name %}<b><code>{{ yields.name }}</code></b>{% endif %}
|
|
45
45
|
{% if yields.annotation %}
|
|
46
46
|
{% with expression = yields.annotation %}
|
|
47
47
|
{% if yields.name %} ({% endif %}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<ul class="first simple">
|
|
15
15
|
{% for attribute in section.value %}
|
|
16
16
|
<li>
|
|
17
|
-
<b>{{ attribute.name }}</b>
|
|
17
|
+
<b><code>{{ attribute.name }}</code></b>
|
|
18
18
|
{% if attribute.annotation %}
|
|
19
19
|
{% with expression = attribute.annotation %}
|
|
20
20
|
(<code>{% include "expression.html" with context %}</code>)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<ul class="first simple">
|
|
15
15
|
{% for parameter in section.value %}
|
|
16
16
|
<li>
|
|
17
|
-
<b>{{ parameter.name }}</b>
|
|
17
|
+
<b><code>{{ parameter.name }}</code></b>
|
|
18
18
|
{% if parameter.annotation %}
|
|
19
19
|
{% with expression = parameter.annotation %}
|
|
20
20
|
(<code>{% include "expression.html" with context %}</code>)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<ul class="first simple">
|
|
15
15
|
{% for parameter in section.value %}
|
|
16
16
|
<li>
|
|
17
|
-
<b>{{ parameter.name }}</b>
|
|
17
|
+
<b><code>{{ parameter.name }}</code></b>
|
|
18
18
|
{% if parameter.annotation %}
|
|
19
19
|
{% with expression = parameter.annotation %}
|
|
20
20
|
(<code>{% include "expression.html" with context %}</code>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<ul class="first simple">
|
|
15
15
|
{% for receives in section.value %}
|
|
16
16
|
<li>
|
|
17
|
-
{% if receives.name %}<b>{{ receives.name }}</b>{% endif %}
|
|
17
|
+
{% if receives.name %}<b><code>{{ receives.name }}</code></b>{% endif %}
|
|
18
18
|
{% if receives.annotation %}
|
|
19
19
|
{% with expression = receives.annotation %}
|
|
20
20
|
{% if receives.name %}({% endif %}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<ul class="first simple">
|
|
15
15
|
{% for returns in section.value %}
|
|
16
16
|
<li>
|
|
17
|
-
{% if returns.name %}<b>{{ returns.name }}</b>{% endif %}
|
|
17
|
+
{% if returns.name %}<b><code>{{ returns.name }}</code></b>{% endif %}
|
|
18
18
|
{% if returns.annotation %}
|
|
19
19
|
{% with expression = returns.annotation %}
|
|
20
20
|
{% if returns.name %}({% endif %}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
<ul class="first simple">
|
|
15
15
|
{% for yields in section.value %}
|
|
16
16
|
<li>
|
|
17
|
-
{% if yields.name %}<b>{{ yields.name }}</b>{% endif %}
|
|
17
|
+
{% if yields.name %}<b></code>{{ yields.name }}</code></b>{% endif %}
|
|
18
18
|
{% if yields.annotation %}
|
|
19
19
|
{% with expression = yields.annotation %}
|
|
20
20
|
{% if yields.name %}({% endif %}
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
mkdocstrings_handlers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
mkdocstrings_handlers/python/__init__.py,sha256=CJT3hmg9HpEMy5dbq2jL3Y8unO6UOHND7yCLojwQrS8,326
|
|
3
|
-
mkdocstrings_handlers/python/handler.py,sha256=
|
|
4
|
-
mkdocstrings_handlers/python/rendering.py,sha256=
|
|
3
|
+
mkdocstrings_handlers/python/handler.py,sha256=DBYtXwFGSDUkfllF4j07LsBzha-w1fmflXs7bIKMcLA,20180
|
|
4
|
+
mkdocstrings_handlers/python/rendering.py,sha256=pBpsM_zxGGlp-xmCNZRcOOkQppyQFPev5b1exmtJSW0,11551
|
|
5
5
|
mkdocstrings_handlers/python/templates/material/_base/attribute.html,sha256=1nLfAEyZiD3DF9R7nyEb69cIM5oFp1MA-Zl7SJwuVts,2539
|
|
6
6
|
mkdocstrings_handlers/python/templates/material/_base/children.html,sha256=8z5dQ2HOywV7CQ3KYYgdBX8N-CGbnYZ8Sm7ugN89IIo,5709
|
|
7
7
|
mkdocstrings_handlers/python/templates/material/_base/class.html,sha256=OQATi6Zz0Vg34ONWwh6mimGdeHd2s0VqxulyrLMMzq8,4479
|
|
8
8
|
mkdocstrings_handlers/python/templates/material/_base/docstring.html,sha256=Sw8TwJy4aTZA2phqqg61QVAZDfLYJAzgE_lQmDcdUsU,2163
|
|
9
9
|
mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html,sha256=wiD2FtMnGrFMZJDilURnNqzIu8bOR0zcMErUVUqbDPo,274
|
|
10
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html,sha256=
|
|
11
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html,sha256=
|
|
10
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html,sha256=hpGB3CKuD44C4utJxKfA4V-uqQCVnV4fVRkjwGMrcdU,2840
|
|
11
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html,sha256=gMGsXcfNAF5k760HZcs5Y9_5klqC4USUfzOjulsyb0A,1895
|
|
12
12
|
mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html,sha256=1VqrMMFMr45RPkBjK0X7VL9PHGl-kDg2IJL2xODSg0o,460
|
|
13
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html,sha256=
|
|
14
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html,sha256=
|
|
15
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html,sha256=
|
|
16
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html,sha256=
|
|
13
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html,sha256=4uqe8A6yWv8RPk_0tpYJApb-JfniEC0ZwTeSDFe-aPo,2409
|
|
14
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html,sha256=u098YP1CJ0aeLFbOZh76BDW-iFVUsMrNJ9yR5GooH_A,1906
|
|
15
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html,sha256=sB6CnpjXe6vRWyzjAf-Z0f7pZKlMsBttEBuQfxx8q4c,2866
|
|
16
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html,sha256=34Xkxn5K2FXw2U72Irwudi27vK_DnzOVQoBNpi_W6cU,3823
|
|
17
17
|
mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html,sha256=wQKL0aGo8iSjaUJdUT_BWFjjqc9SDC-Qe4yByfHWIa0,2478
|
|
18
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html,sha256=
|
|
19
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html,sha256=
|
|
18
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html,sha256=OVVXLKy-hSOto720TKGmmVPh-gcLNwR-w34LvDm1Brs,3503
|
|
19
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html,sha256=GACKAuJKUjAu3mUts_GJnQ31VZt04wxznMQNdHbDeAI,3479
|
|
20
20
|
mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html,sha256=FROLXo9Xd97TlpokL0YZC1kZ08QRL5bIm8_QnFtrBNQ,2453
|
|
21
|
-
mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html,sha256=
|
|
21
|
+
mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html,sha256=3aBn3F8wO6ptxWQzMHyykrX8r4_rn2ezfhE7IZUO1Uw,3444
|
|
22
22
|
mkdocstrings_handlers/python/templates/material/_base/expression.html,sha256=lfvgET2b8dxvqYZJqiGjS-ooO_nNXqV42zsL8yL05_s,1845
|
|
23
23
|
mkdocstrings_handlers/python/templates/material/_base/function.html,sha256=7f_RhIvsWa9KNDrg5Dgj8XX0_ltAv629EybAX-yQ2p0,2787
|
|
24
24
|
mkdocstrings_handlers/python/templates/material/_base/labels.html,sha256=QMO1lrs1smktTGvkDZabvJZFQpMp_nSoM8JBt-tAcu8,250
|
|
@@ -54,20 +54,20 @@ mkdocstrings_handlers/python/templates/material/languages/zh.html,sha256=1yUDcpU
|
|
|
54
54
|
mkdocstrings_handlers/python/templates/material/module.html,sha256=GKdbkIxQoObcjxZP6PRLpLOYXMVFS4gSN-nxolEeDjw,34
|
|
55
55
|
mkdocstrings_handlers/python/templates/material/signature.html,sha256=u9zdNsM5Lqh0ROOcThzsjHeHPJCMixy3XfzjypwyGLM,37
|
|
56
56
|
mkdocstrings_handlers/python/templates/material/style.css,sha256=_lHEDcsuVAuEGhLjrMSpdH5-lxZTeVOe-K-ZDmYlVOk,999
|
|
57
|
-
mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html,sha256=
|
|
58
|
-
mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html,sha256=
|
|
59
|
-
mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html,sha256=
|
|
57
|
+
mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html,sha256=Bx3UUWdjKQIZi_LOr6Cry5-77E0mbme_gboJTLUPI6g,1001
|
|
58
|
+
mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html,sha256=gyNlRfgj4Gp06kVxf1iXXHzUQQrbBQpGtWVjUz99038,1007
|
|
59
|
+
mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html,sha256=Xz3USHwc-KoxN9Wig43gMs4icxJp933NyHYEYlISYW4,1279
|
|
60
60
|
mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html,sha256=0G60QbAAhq7Pkv8qK7rXFigHQlSlfsswao3T9BLzofU,928
|
|
61
|
-
mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html,sha256=
|
|
62
|
-
mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html,sha256=
|
|
61
|
+
mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html,sha256=Nr4nppTugLm66MQ7K4xdcuk1ivsDtre3tuDAJsw6QP8,1131
|
|
62
|
+
mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html,sha256=96E9kb1PAuaPXMWj-_OsUoZtsV8uxIIeVO_6EAn9eK8,1080
|
|
63
63
|
mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html,sha256=r5nv78e78OdN5j9DAX-WCeUr6FAPEurt7IKHjwq1zOo,923
|
|
64
|
-
mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html,sha256=
|
|
64
|
+
mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html,sha256=Qx7Nj2D9ElQ28fxtBXqmUkjLggZp7zMgniSlJ2guBG4,1114
|
|
65
65
|
mkdocstrings_handlers/python/templates/readthedocs/language.html,sha256=ntV-16zf2S3h9EmKCVsD9Ny9yM5cFKXh5_h47LuA07U,431
|
|
66
66
|
mkdocstrings_handlers/python/templates/readthedocs/languages/en.html,sha256=bhfjbEhYdKeUCq4O3-XwX19jvTAF8u0vr_VU62ahN4g,356
|
|
67
67
|
mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html,sha256=ULdcRwrN9rF8shxFVwEZ1jqSICebVKMi8cYHpNZypd8,372
|
|
68
68
|
mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html,sha256=ZYm9N33cRC4Z66-ZqmteWDfRNfo8hKe25Bz4ijVk22A,359
|
|
69
69
|
mkdocstrings_handlers/python/templates/readthedocs/style.css,sha256=Ds8vF1rSxc2B0c4P10osx4cqXHWMntcSCxmRfX-nfzw,971
|
|
70
|
-
mkdocstrings_python-1.6.
|
|
71
|
-
mkdocstrings_python-1.6.
|
|
72
|
-
mkdocstrings_python-1.6.
|
|
73
|
-
mkdocstrings_python-1.6.
|
|
70
|
+
mkdocstrings_python-1.6.3.dist-info/METADATA,sha256=z0xXCzKJz7OiEMLn7m7S7wD_p90XMZrn6OUoOoZdXjQ,5748
|
|
71
|
+
mkdocstrings_python-1.6.3.dist-info/WHEEL,sha256=1D4d-_ODszlK6-qFybc5BLF-ZhZvee-uKVh2hLa3IIc,90
|
|
72
|
+
mkdocstrings_python-1.6.3.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
|
|
73
|
+
mkdocstrings_python-1.6.3.dist-info/RECORD,,
|
|
File without changes
|
{mkdocstrings_python-1.6.2.dist-info → mkdocstrings_python-1.6.3.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|