mkdocstrings-python 1.8.0__py3-none-any.whl → 1.9.1__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.
Files changed (21) hide show
  1. mkdocstrings_handlers/python/__init__.py +1 -5
  2. mkdocstrings_handlers/python/handler.py +14 -2
  3. mkdocstrings_handlers/python/rendering.py +9 -0
  4. mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +3 -3
  5. mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +3 -3
  6. mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +3 -3
  7. mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +3 -3
  8. mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +3 -3
  9. mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +3 -3
  10. mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html +3 -3
  11. mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +3 -3
  12. mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +3 -3
  13. mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html +3 -3
  14. mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +3 -3
  15. mkdocstrings_handlers/python/templates/material/_base/labels.html +1 -1
  16. mkdocstrings_handlers/python/templates/material/style.css +6 -1
  17. {mkdocstrings_python-1.8.0.dist-info → mkdocstrings_python-1.9.1.dist-info}/METADATA +8 -20
  18. {mkdocstrings_python-1.8.0.dist-info → mkdocstrings_python-1.9.1.dist-info}/RECORD +21 -21
  19. /mkdocstrings_handlers/{py.typed → python/py.typed} +0 -0
  20. {mkdocstrings_python-1.8.0.dist-info → mkdocstrings_python-1.9.1.dist-info}/WHEEL +0 -0
  21. {mkdocstrings_python-1.8.0.dist-info → mkdocstrings_python-1.9.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,9 +1,5 @@
1
- """This package implements a handler for the Python language."""
1
+ """Python handler for mkdocstrings."""
2
2
 
3
3
  from mkdocstrings_handlers.python.handler import get_handler
4
4
 
5
5
  __all__ = ["get_handler"]
6
-
7
- # TODO: CSS classes everywhere in templates
8
- # TODO: name normalization (filenames, Jinja2 variables, HTML tags, CSS classes)
9
- # TODO: Jinja2 blocks everywhere in templates
@@ -61,6 +61,7 @@ class PythonHandler(BaseHandler):
61
61
  fallback_config: ClassVar[dict] = {"fallback": True}
62
62
  """The configuration used to collect item during autorefs fallback."""
63
63
  default_config: ClassVar[dict] = {
64
+ "find_stubs_package": False,
64
65
  "docstring_style": "google",
65
66
  "docstring_options": {},
66
67
  "show_symbol_type_heading": False,
@@ -105,11 +106,13 @@ class PythonHandler(BaseHandler):
105
106
  "preload_modules": None,
106
107
  "allow_inspection": True,
107
108
  "summary": False,
109
+ "show_labels": True,
108
110
  "unwrap_annotated": False,
109
111
  }
110
112
  """Default handler configuration.
111
113
 
112
114
  Attributes: General options:
115
+ find_stubs_package (bool): Whether to load stubs package (package-stubs) when extracting docstrings. Default `False`.
113
116
  allow_inspection (bool): Whether to allow inspecting modules when visiting them is not possible. Default: `True`.
114
117
  show_bases (bool): Show the base classes of a class. Default: `True`.
115
118
  show_source (bool): Show the source code of this object. Default: `True`.
@@ -152,6 +155,7 @@ class PythonHandler(BaseHandler):
152
155
  group_by_category (bool): Group the object's children by categories: attributes, classes, functions, and modules. Default: `True`.
153
156
  show_submodules (bool): When rendering a module, show its submodules recursively. Default: `False`.
154
157
  summary (bool | dict[str, bool]): Whether to render summaries of modules, classes, functions (methods) and attributes.
158
+ show_labels (bool): Whether to show labels of the members. Default: `True`.
155
159
 
156
160
  Attributes: Docstrings options:
157
161
  docstring_style (str): The docstring style to use: `google`, `numpy`, `sphinx`, or `None`. Default: `"google"`.
@@ -279,8 +283,16 @@ class PythonHandler(BaseHandler):
279
283
  try:
280
284
  for pre_loaded_module in final_config.get("preload_modules") or []:
281
285
  if pre_loaded_module not in self._modules_collection:
282
- loader.load(pre_loaded_module)
283
- loader.load(module_name)
286
+ loader.load(
287
+ pre_loaded_module,
288
+ try_relative_path=False,
289
+ find_stubs_package=final_config["find_stubs_package"],
290
+ )
291
+ loader.load(
292
+ module_name,
293
+ try_relative_path=False,
294
+ find_stubs_package=final_config["find_stubs_package"],
295
+ )
284
296
  except ImportError as error:
285
297
  raise CollectionError(str(error)) from error
286
298
  unresolved, iterations = loader.resolve_aliases(
@@ -166,6 +166,15 @@ def do_format_signature(
166
166
  ),
167
167
  )
168
168
 
169
+ # Since we highlight the signature without `def`,
170
+ # Pygments sees it as a function call and not a function definition.
171
+ # The result is that the function name is not parsed as such,
172
+ # but instead as a regular name: `n` CSS class instead of `nf`.
173
+ # To fix it, we replace the first occurrence of an `n` CSS class
174
+ # with an `nf` one, unless we found `nf` already.
175
+ if signature.find('class="nf"') == -1:
176
+ signature = signature.replace('class="n"', 'class="nf"', 1)
177
+
169
178
  if stash:
170
179
  for key, value in stash.items():
171
180
  signature = re.sub(rf"\b{key}\b", value, signature)
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Attributes:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -35,7 +35,7 @@
35
35
  </table>
36
36
  {% endblock table_style %}
37
37
  {% elif config.docstring_section_style == "list" %}
38
- {% block list_style %}
38
+ {% block list_style scoped %}
39
39
  <p>{{ section.title or lang.t("Attributes:") }}</p>
40
40
  <ul>
41
41
  {% for attribute in section.value %}
@@ -55,7 +55,7 @@
55
55
  </ul>
56
56
  {% endblock list_style %}
57
57
  {% elif config.docstring_section_style == "spacy" %}
58
- {% block spacy_style %}
58
+ {% block spacy_style scoped %}
59
59
  <table>
60
60
  <thead>
61
61
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Classes:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -27,7 +27,7 @@
27
27
  </table>
28
28
  {% endblock table_style %}
29
29
  {% elif config.docstring_section_style == "list" %}
30
- {% block list_style %}
30
+ {% block list_style scoped %}
31
31
  <p>{{ section.title or lang.t("Classes:") }}</p>
32
32
  <ul>
33
33
  {% for class in section.value %}
@@ -42,7 +42,7 @@
42
42
  </ul>
43
43
  {% endblock list_style %}
44
44
  {% elif config.docstring_section_style == "spacy" %}
45
- {% block spacy_style %}
45
+ {% block spacy_style scoped %}
46
46
  <table>
47
47
  <thead>
48
48
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Methods:") if obj.is_class else lang.t("Functions:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -29,7 +29,7 @@
29
29
  </table>
30
30
  {% endblock table_style %}
31
31
  {% elif config.docstring_section_style == "list" %}
32
- {% block list_style %}
32
+ {% block list_style scoped %}
33
33
  <p>{{ section.title or lang.t("Methods:") if obj.is_class else lang.t("Functions:") }}</p>
34
34
  <ul>
35
35
  {% for function in section.value %}
@@ -46,7 +46,7 @@
46
46
  </ul>
47
47
  {% endblock list_style %}
48
48
  {% elif config.docstring_section_style == "spacy" %}
49
- {% block spacy_style %}
49
+ {% block spacy_style scoped %}
50
50
  <table>
51
51
  <thead>
52
52
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Modules:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -27,7 +27,7 @@
27
27
  </table>
28
28
  {% endblock table_style %}
29
29
  {% elif config.docstring_section_style == "list" %}
30
- {% block list_style %}
30
+ {% block list_style scoped %}
31
31
  <p>{{ section.title or lang.t("Modules:") }}</p>
32
32
  <ul>
33
33
  {% for module in section.value %}
@@ -42,7 +42,7 @@
42
42
  </ul>
43
43
  {% endblock list_style %}
44
44
  {% elif config.docstring_section_style == "spacy" %}
45
- {% block spacy_style %}
45
+ {% block spacy_style scoped %}
46
46
  <table>
47
47
  <thead>
48
48
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Other Parameters:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -35,7 +35,7 @@
35
35
  </table>
36
36
  {% endblock table_style %}
37
37
  {% elif config.docstring_section_style == "list" %}
38
- {% block list_style %}
38
+ {% block list_style scoped %}
39
39
  <p>{{ section.title or lang.t("Other Parameters:") }}</p>
40
40
  <ul>
41
41
  {% for parameter in section.value %}
@@ -55,7 +55,7 @@
55
55
  </ul>
56
56
  {% endblock list_style %}
57
57
  {% elif config.docstring_section_style == "spacy" %}
58
- {% block spacy_style %}
58
+ {% block spacy_style scoped %}
59
59
  <table>
60
60
  <thead>
61
61
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Parameters:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -45,7 +45,7 @@
45
45
  </table>
46
46
  {% endblock table_style %}
47
47
  {% elif config.docstring_section_style == "list" %}
48
- {% block list_style %}
48
+ {% block list_style scoped %}
49
49
  <p>{{ section.title or lang.t("Parameters:") }}</p>
50
50
  <ul>
51
51
  {% for parameter in section.value %}
@@ -70,7 +70,7 @@
70
70
  </ul>
71
71
  {% endblock list_style %}
72
72
  {% elif config.docstring_section_style == "spacy" %}
73
- {% block spacy_style %}
73
+ {% block spacy_style scoped %}
74
74
  <table>
75
75
  <thead>
76
76
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Raises:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -33,7 +33,7 @@
33
33
  </table>
34
34
  {% endblock table_style %}
35
35
  {% elif config.docstring_section_style == "list" %}
36
- {% block list_style %}
36
+ {% block list_style scoped %}
37
37
  <p>{{ lang.t(section.title) or lang.t("Raises:") }}</p>
38
38
  <ul>
39
39
  {% for raises in section.value %}
@@ -52,7 +52,7 @@
52
52
  </ul>
53
53
  {% endblock list_style %}
54
54
  {% elif config.docstring_section_style == "spacy" %}
55
- {% block spacy_style %}
55
+ {% block spacy_style scoped %}
56
56
  <table>
57
57
  <thead>
58
58
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  {% set name_column = section.value|selectattr("name")|any %}
8
8
  <p><strong>{{ section.title or lang.t("Receives:") }}</strong></p>
9
9
  <table>
@@ -36,7 +36,7 @@
36
36
  </table>
37
37
  {% endblock table_style %}
38
38
  {% elif config.docstring_section_style == "list" %}
39
- {% block list_style %}
39
+ {% block list_style scoped %}
40
40
  <p>{{ section.title or lang.t("Receives:") }}</p>
41
41
  <ul>
42
42
  {% for receives in section.value %}
@@ -58,7 +58,7 @@
58
58
  </ul>
59
59
  {% endblock list_style %}
60
60
  {% elif config.docstring_section_style == "spacy" %}
61
- {% block spacy_style %}
61
+ {% block spacy_style scoped %}
62
62
  <table>
63
63
  <thead>
64
64
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  {% set name_column = section.value|selectattr("name")|any %}
8
8
  <p><strong>{{ section.title or lang.t("Returns:") }}</strong></p>
9
9
  <table>
@@ -36,7 +36,7 @@
36
36
  </table>
37
37
  {% endblock table_style %}
38
38
  {% elif config.docstring_section_style == "list" %}
39
- {% block list_style %}
39
+ {% block list_style scoped %}
40
40
  <p>{{ section.title or lang.t("Returns:") }}</p>
41
41
  <ul>
42
42
  {% for returns in section.value %}
@@ -58,7 +58,7 @@
58
58
  </ul>
59
59
  {% endblock list_style %}
60
60
  {% elif config.docstring_section_style == "spacy" %}
61
- {% block spacy_style %}
61
+ {% block spacy_style scoped %}
62
62
  <table>
63
63
  <thead>
64
64
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  <p><strong>{{ section.title or lang.t("Warns:") }}</strong></p>
8
8
  <table>
9
9
  <thead>
@@ -33,7 +33,7 @@
33
33
  </table>
34
34
  {% endblock table_style %}
35
35
  {% elif config.docstring_section_style == "list" %}
36
- {% block list_style %}
36
+ {% block list_style scoped %}
37
37
  <p>{{ section.title or lang.t("Warns:") }}</p>
38
38
  <ul>
39
39
  {% for warns in section.value %}
@@ -52,7 +52,7 @@
52
52
  </ul>
53
53
  {% endblock list_style %}
54
54
  {% elif config.docstring_section_style == "spacy" %}
55
- {% block spacy_style %}
55
+ {% block spacy_style scoped %}
56
56
  <table>
57
57
  <thead>
58
58
  <tr>
@@ -3,7 +3,7 @@
3
3
  {% import "language.html" as lang with context %}
4
4
 
5
5
  {% if config.docstring_section_style == "table" %}
6
- {% block table_style %}
6
+ {% block table_style scoped %}
7
7
  {% set name_column = section.value|selectattr("name")|any %}
8
8
  <p><strong>{{ section.title or lang.t("Yields:") }}</strong></p>
9
9
  <table>
@@ -36,7 +36,7 @@
36
36
  </table>
37
37
  {% endblock table_style %}
38
38
  {% elif config.docstring_section_style == "list" %}
39
- {% block list_style %}
39
+ {% block list_style scoped %}
40
40
  <p>{{ section.title or lang.t("Yields:") }}</p>
41
41
  <ul>
42
42
  {% for yields in section.value %}
@@ -58,7 +58,7 @@
58
58
  </ul>
59
59
  {% endblock list_style %}
60
60
  {% elif config.docstring_section_style == "spacy" %}
61
- {% block spacy_style %}
61
+ {% block spacy_style scoped %}
62
62
  <table>
63
63
  <thead>
64
64
  <tr>
@@ -1,4 +1,4 @@
1
- {% if labels %}
1
+ {% if config.show_labels and labels %}
2
2
  {{ log.debug("Rendering labels") }}
3
3
  <span class="doc doc-labels">
4
4
  {% for label in labels|sort %}
@@ -105,4 +105,9 @@ code.doc-symbol-module {
105
105
 
106
106
  code.doc-symbol-module::after {
107
107
  content: "mod";
108
- }
108
+ }
109
+
110
+ .doc-signature .autorefs {
111
+ color: inherit;
112
+ border-bottom: 1px dotted currentcolor;
113
+ }
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mkdocstrings-python
3
- Version: 1.8.0
3
+ Version: 1.9.1
4
4
  Summary: A Python handler for mkdocstrings.
5
- Author-Email: Timothée Mazzucotelli <pawamoy@pm.me>
5
+ Author-Email: Timothée Mazzucotelli <dev@pawamoy.fr>
6
6
  License: ISC
7
7
  Classifier: Development Status :: 4 - Beta
8
8
  Classifier: Intended Audience :: Developers
@@ -16,7 +16,6 @@ Classifier: Programming Language :: Python :: 3.11
16
16
  Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Topic :: Documentation
18
18
  Classifier: Topic :: Software Development
19
- Classifier: Topic :: Software Development :: Documentation
20
19
  Classifier: Topic :: Utilities
21
20
  Classifier: Typing :: Typed
22
21
  Project-URL: Homepage, https://mkdocstrings.github.io/python
@@ -28,6 +27,7 @@ Project-URL: Discussions, https://github.com/mkdocstrings/python/discussions
28
27
  Project-URL: Gitter, https://gitter.im/mkdocstrings/python
29
28
  Project-URL: Funding, https://github.com/sponsors/pawamoy
30
29
  Requires-Python: >=3.8
30
+ Requires-Dist: markdown<3.6,>=3.3
31
31
  Requires-Dist: mkdocstrings>=0.20
32
32
  Requires-Dist: griffe>=0.37
33
33
  Description-Content-Type: text/markdown
@@ -36,23 +36,11 @@ Description-Content-Type: text/markdown
36
36
 
37
37
  <p align="center">A Python handler for <a href="https://github.com/mkdocstrings/mkdocstrings"><i>mkdocstrings</i></a>.</p>
38
38
 
39
- <p align="center">
40
- <a href="https://github.com/mkdocstrings/python/actions?query=workflow%3Aci">
41
- <img alt="ci" src="https://github.com/mkdocstrings/python/workflows/ci/badge.svg" />
42
- </a>
43
- <a href="https://mkdocstrings.github.io/python/">
44
- <img alt="documentation" src="https://img.shields.io/badge/docs-mkdocs%20material-blue.svg?style=flat" />
45
- </a>
46
- <a href="https://pypi.org/project/mkdocstrings-python/">
47
- <img alt="pypi version" src="https://img.shields.io/pypi/v/mkdocstrings-python.svg" />
48
- </a>
49
- <a href="https://gitpod.io/#https://github.com/mkdocstrings/python">
50
- <img alt="gitpod" src="https://img.shields.io/badge/gitpod-workspace-blue.svg?style=flat" />
51
- </a>
52
- <a href="https://app.gitter.im/#/room/#mkdocstrings_python:gitter.im">
53
- <img alt="gitter" src="https://badges.gitter.im/join%20chat.svg" />
54
- </a>
55
- </p>
39
+ [![ci](https://github.com/mkdocstrings/python/workflows/ci/badge.svg)](https://github.com/mkdocstrings/python/actions?query=workflow%3Aci)
40
+ [![documentation](https://img.shields.io/badge/docs-mkdocs%20material-blue.svg?style=flat)](https://mkdocstrings.github.io/python/)
41
+ [![pypi version](https://img.shields.io/pypi/v/mkdocstrings-python.svg)](https://pypi.org/project/mkdocstrings-python/)
42
+ [![gitpod](https://img.shields.io/badge/gitpod-workspace-blue.svg?style=flat)](https://gitpod.io/#https://github.com/mkdocstrings/python)
43
+ [![gitter](https://badges.gitter.im/join%20chat.svg)](https://app.gitter.im/#/room/#python:gitter.im)
56
44
 
57
45
  ---
58
46
 
@@ -1,28 +1,28 @@
1
- mkdocstrings_handlers/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- mkdocstrings_handlers/python/__init__.py,sha256=CJT3hmg9HpEMy5dbq2jL3Y8unO6UOHND7yCLojwQrS8,326
1
+ mkdocstrings_handlers/python/__init__.py,sha256=k-0NWvXysr5RqWjtGyCozookveBB-ADZHIhgxvI1px8,128
3
2
  mkdocstrings_handlers/python/debug.py,sha256=AscoYoSXHANgE7ps5o9TzkzBT43YxNmtPxl2a4zC5oE,2764
4
- mkdocstrings_handlers/python/handler.py,sha256=IIouRV5w5ivZNbHvj07S7r0erstVv4aO_7zuB_qT0lA,22539
5
- mkdocstrings_handlers/python/rendering.py,sha256=apE7JiwiHDqqjL3_eCZnqFUhiaCXzGvRpc6VUrvjb7w,16046
3
+ mkdocstrings_handlers/python/handler.py,sha256=b2xze-co4z2GD813QeF_BSlrceVUQ2UVGztgmHvZFwM,23165
4
+ mkdocstrings_handlers/python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ mkdocstrings_handlers/python/rendering.py,sha256=NzZg3wtasUsFseDWvJaqN18K-SZmE5DF-wGfS5lvm8M,16542
6
6
  mkdocstrings_handlers/python/templates/material/_base/attribute.html,sha256=LoaiKpVbjqSCeYD-LtDdnsI52OQ5NVb2VXXfTVvTwJE,2944
7
7
  mkdocstrings_handlers/python/templates/material/_base/children.html,sha256=8z5dQ2HOywV7CQ3KYYgdBX8N-CGbnYZ8Sm7ugN89IIo,5709
8
8
  mkdocstrings_handlers/python/templates/material/_base/class.html,sha256=z6u1gcbt8AFpY3XeVDqm1RTxw4koasKkSnl8UvSdCmM,5413
9
9
  mkdocstrings_handlers/python/templates/material/_base/docstring.html,sha256=Sw8TwJy4aTZA2phqqg61QVAZDfLYJAzgE_lQmDcdUsU,2163
10
10
  mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html,sha256=wiD2FtMnGrFMZJDilURnNqzIu8bOR0zcMErUVUqbDPo,274
11
- mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html,sha256=Zzm81rvTFO_zVmZLRB2p67aUGiBsNiJHsQThIAXIHng,3080
12
- mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html,sha256=hsQY81_kLB0tYo4mZ7x4Q0WupTBg2kNcLXzuYkVoZKY,2123
11
+ mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html,sha256=VHqqzXyyrpoxZQANhGNEgV4HAq-FpF4vmyfpOFyN5Uo,3101
12
+ mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html,sha256=ihQQ1pxkUoV2UTLzg84AQxhblC0KFXKm-cIyOplVZi0,2144
13
13
  mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html,sha256=1VqrMMFMr45RPkBjK0X7VL9PHGl-kDg2IJL2xODSg0o,460
14
- mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html,sha256=O-bmuyOP6wpqoujdx11TgJJmJAjUJLLxS7erTfLnxYc,2646
15
- mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html,sha256=y7xnCRUiSh7Ck5gvPIWXgxbCXkUDf4g79Yo5gapXy7c,2137
16
- mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html,sha256=sB6CnpjXe6vRWyzjAf-Z0f7pZKlMsBttEBuQfxx8q4c,2866
17
- mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html,sha256=34Xkxn5K2FXw2U72Irwudi27vK_DnzOVQoBNpi_W6cU,3823
18
- mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html,sha256=wQKL0aGo8iSjaUJdUT_BWFjjqc9SDC-Qe4yByfHWIa0,2478
19
- mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html,sha256=OVVXLKy-hSOto720TKGmmVPh-gcLNwR-w34LvDm1Brs,3503
20
- mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html,sha256=GACKAuJKUjAu3mUts_GJnQ31VZt04wxznMQNdHbDeAI,3479
21
- mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html,sha256=FROLXo9Xd97TlpokL0YZC1kZ08QRL5bIm8_QnFtrBNQ,2453
22
- mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html,sha256=3aBn3F8wO6ptxWQzMHyykrX8r4_rn2ezfhE7IZUO1Uw,3444
14
+ mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html,sha256=Fwb9TWI_g4VHhQ_uGfmLoVR9ZVEaL0SRNWhsg1Fx5pM,2667
15
+ mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html,sha256=nlQIfJ0oCxwC3waIS5yOWztQ8WmYuknF4duOHS8kdsU,2158
16
+ mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html,sha256=KhAB_bg4A_TldehgVuRcf8I1aH_lglSLO-LKEnhcHj4,2887
17
+ mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html,sha256=HK5NrzUwjwd_Lx61vo_a-5vUv40FtBUn_Bw80IZtFrc,3844
18
+ mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html,sha256=G__ln_8ij8USG6kxE3rn8Az45C6t6Om6ntYC0-O85xM,2499
19
+ mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html,sha256=wIWn8korEXHoJc9PpbHSr9_j8Opx4etDVZZ9vz-Hrcw,3524
20
+ mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html,sha256=oQQkQps_Qv7zQq_b37QNvBQ2kDhtmBhQ3u51nWgfUFA,3500
21
+ mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html,sha256=-OYPbcvnUuwX4VlPZVfQsR9lywlFGfsH-WcajEpaICQ,2474
22
+ mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html,sha256=CCdSWLIwcpxZcvdJl5MjnWPkvbPKlkrftu0ix94aqCw,3465
23
23
  mkdocstrings_handlers/python/templates/material/_base/expression.html,sha256=sDcvcJiqWSpSXyX_gr7kY7zetlIAi9IzLPK0RN4rOgo,2078
24
24
  mkdocstrings_handlers/python/templates/material/_base/function.html,sha256=L2rnpSrEK0adb-efALjsBGDdomvUJRDMVxvmnUKHN8c,3515
25
- mkdocstrings_handlers/python/templates/material/_base/labels.html,sha256=QMO1lrs1smktTGvkDZabvJZFQpMp_nSoM8JBt-tAcu8,250
25
+ mkdocstrings_handlers/python/templates/material/_base/labels.html,sha256=uTcF1MNujDmVj1BOHEtO31ShsHWQUjDTR5zY0T9wL0w,273
26
26
  mkdocstrings_handlers/python/templates/material/_base/languages/en.html,sha256=u0j9TIPh18qHEI4bzlGlwu4IX95EPIi0Q3AaDi6D58I,966
27
27
  mkdocstrings_handlers/python/templates/material/_base/languages/ja.html,sha256=Az63fFTq4MIr65DjufCh8GYujB0-CiAJFDVVW9mCGtQ,984
28
28
  mkdocstrings_handlers/python/templates/material/_base/languages/zh.html,sha256=oPB3-fnOdmdGdrnRZUgXw6zuQGlF-aq5Bbkm1zF4xgA,902
@@ -59,7 +59,7 @@ mkdocstrings_handlers/python/templates/material/languages/ja.html,sha256=vUYyvH4
59
59
  mkdocstrings_handlers/python/templates/material/languages/zh.html,sha256=1yUDcpU5z482DyvRAA4Y_9yIpJ5ctp0_arp_xEnt3s0,39
60
60
  mkdocstrings_handlers/python/templates/material/module.html,sha256=GKdbkIxQoObcjxZP6PRLpLOYXMVFS4gSN-nxolEeDjw,34
61
61
  mkdocstrings_handlers/python/templates/material/signature.html,sha256=u9zdNsM5Lqh0ROOcThzsjHeHPJCMixy3XfzjypwyGLM,37
62
- mkdocstrings_handlers/python/templates/material/style.css,sha256=trUx7_WeMau85EcfiBLtHSnaD-wfiEYPqI0p7Mw0EY0,2540
62
+ mkdocstrings_handlers/python/templates/material/style.css,sha256=L7_Gw62vXQRsXw8uPd-pqTHS5-TwiC6n2nZNbdEH9lY,2631
63
63
  mkdocstrings_handlers/python/templates/material/summary.html,sha256=gg6FxupZVtsy0wkRJ7BStaM-JyCFs9nGMEDm0Gakxm4,35
64
64
  mkdocstrings_handlers/python/templates/material/summary/attributes.html,sha256=BxjqllPQbMpKO2x-q6cJG1YUq6Rf2aBnNEjfxAo6IKQ,46
65
65
  mkdocstrings_handlers/python/templates/material/summary/classes.html,sha256=J8cdjljZqCdgR92lW4LvV79xBLOmFa_xMoD54XSZKC4,43
@@ -78,7 +78,7 @@ mkdocstrings_handlers/python/templates/readthedocs/languages/en.html,sha256=u0j9
78
78
  mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html,sha256=Az63fFTq4MIr65DjufCh8GYujB0-CiAJFDVVW9mCGtQ,984
79
79
  mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html,sha256=oPB3-fnOdmdGdrnRZUgXw6zuQGlF-aq5Bbkm1zF4xgA,902
80
80
  mkdocstrings_handlers/python/templates/readthedocs/style.css,sha256=Ds8vF1rSxc2B0c4P10osx4cqXHWMntcSCxmRfX-nfzw,971
81
- mkdocstrings_python-1.8.0.dist-info/METADATA,sha256=c8Uf_IIVwojBSGMjaB80iuCZDaXW8WSmEu-QFLFrStk,5770
82
- mkdocstrings_python-1.8.0.dist-info/WHEEL,sha256=N2J68yzZqJh3mI_Wg92rwhw0rtJDFpZj9bwQIMJgaVg,90
83
- mkdocstrings_python-1.8.0.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
84
- mkdocstrings_python-1.8.0.dist-info/RECORD,,
81
+ mkdocstrings_python-1.9.1.dist-info/METADATA,sha256=b1DJwEz7yE4EpPjS3K60YphjFB6ZMvPIb5_7-cGuAaE,5524
82
+ mkdocstrings_python-1.9.1.dist-info/WHEEL,sha256=N2J68yzZqJh3mI_Wg92rwhw0rtJDFpZj9bwQIMJgaVg,90
83
+ mkdocstrings_python-1.9.1.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
84
+ mkdocstrings_python-1.9.1.dist-info/RECORD,,
File without changes