mkdocstrings-python 1.10.5__py3-none-any.whl → 1.10.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.
Files changed (35) hide show
  1. mkdocstrings_handlers/python/handler.py +11 -8
  2. mkdocstrings_handlers/python/rendering.py +7 -8
  3. mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja +1 -1
  4. mkdocstrings_handlers/python/templates/material/_base/children.html.jinja +2 -2
  5. mkdocstrings_handlers/python/templates/material/_base/class.html.jinja +1 -1
  6. mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja +1 -1
  7. mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +1 -1
  8. mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +1 -1
  9. mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja +1 -1
  10. mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +1 -1
  11. mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +1 -1
  12. mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja +1 -1
  13. mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja +1 -1
  14. mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja +1 -1
  15. mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja +1 -1
  16. mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja +1 -1
  17. mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja +1 -1
  18. mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja +1 -1
  19. mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja +1 -1
  20. mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja +2 -2
  21. mkdocstrings_handlers/python/templates/material/_base/function.html.jinja +1 -1
  22. mkdocstrings_handlers/python/templates/material/_base/module.html.jinja +1 -1
  23. mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja +1 -1
  24. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja +1 -1
  25. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja +1 -1
  26. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja +1 -1
  27. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja +1 -1
  28. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja +1 -1
  29. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja +1 -1
  30. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja +1 -1
  31. mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja +1 -1
  32. {mkdocstrings_python-1.10.5.dist-info → mkdocstrings_python-1.10.7.dist-info}/METADATA +2 -2
  33. {mkdocstrings_python-1.10.5.dist-info → mkdocstrings_python-1.10.7.dist-info}/RECORD +35 -35
  34. {mkdocstrings_python-1.10.5.dist-info → mkdocstrings_python-1.10.7.dist-info}/WHEEL +1 -1
  35. {mkdocstrings_python-1.10.5.dist-info → mkdocstrings_python-1.10.7.dist-info}/licenses/LICENSE +0 -0
@@ -12,12 +12,15 @@ from contextlib import suppress
12
12
  from pathlib import Path
13
13
  from typing import TYPE_CHECKING, Any, BinaryIO, ClassVar, Iterator, Mapping, Sequence
14
14
 
15
- from griffe.collections import LinesCollection, ModulesCollection
16
- from griffe.docstrings.parsers import Parser
17
- from griffe.exceptions import AliasResolutionError
18
- from griffe.extensions import load_extensions
19
- from griffe.loader import GriffeLoader
20
- from griffe.logger import patch_loggers
15
+ from griffe import (
16
+ AliasResolutionError,
17
+ GriffeLoader,
18
+ LinesCollection,
19
+ ModulesCollection,
20
+ Parser,
21
+ load_extensions,
22
+ patch_logger,
23
+ )
21
24
  from mkdocstrings.extension import PluginError
22
25
  from mkdocstrings.handlers.base import BaseHandler, CollectionError, CollectorItem
23
26
  from mkdocstrings.inventory import Inventory
@@ -47,7 +50,7 @@ else:
47
50
 
48
51
  logger = get_logger(__name__)
49
52
 
50
- patch_loggers(get_logger)
53
+ patch_logger(get_logger)
51
54
 
52
55
 
53
56
  class PythonHandler(BaseHandler):
@@ -162,7 +165,7 @@ class PythonHandler(BaseHandler):
162
165
 
163
166
  Attributes: Docstrings options:
164
167
  docstring_style (str): The docstring style to use: `google`, `numpy`, `sphinx`, or `None`. Default: `"google"`.
165
- docstring_options (dict): The options for the docstring parser. See parsers under [`griffe.docstrings`][].
168
+ docstring_options (dict): The options for the docstring parser. See [docstring parsers](https://mkdocstrings.github.io/griffe/reference/docstrings/) and their options in Griffe docs.
166
169
  docstring_section_style (str): The style used to render docstring sections. Options: `table`, `list`, `spacy`. Default: `"table"`.
167
170
  merge_init_into_class (bool): Whether to merge the `__init__` method into the class' signature and docstring. Default: `False`.
168
171
  show_if_no_docstring (bool): Show the object heading even if it has no docstring or children with docstrings. Default: `False`.
@@ -12,19 +12,20 @@ from functools import lru_cache, partial
12
12
  from pathlib import Path
13
13
  from typing import TYPE_CHECKING, Any, Callable, Match, Pattern, Sequence
14
14
 
15
- from griffe.dataclasses import Alias, Object
16
- from griffe.docstrings.dataclasses import (
15
+ from griffe import (
16
+ Alias,
17
17
  DocstringSectionAttributes,
18
18
  DocstringSectionClasses,
19
19
  DocstringSectionFunctions,
20
20
  DocstringSectionModules,
21
+ Object,
21
22
  )
22
23
  from jinja2 import TemplateNotFound, pass_context, pass_environment
23
24
  from markupsafe import Markup
24
25
  from mkdocstrings.loggers import get_logger
25
26
 
26
27
  if TYPE_CHECKING:
27
- from griffe.dataclasses import Attribute, Class, Function, Module
28
+ from griffe import Attribute, Class, Function, Module
28
29
  from jinja2 import Environment, Template
29
30
  from jinja2.runtime import Context
30
31
  from mkdocstrings.handlers.base import CollectorItem
@@ -364,11 +365,9 @@ def _keep_object(name: str, filters: Sequence[tuple[Pattern, bool]]) -> bool:
364
365
  if regex.search(name):
365
366
  keep = not exclude
366
367
  if keep is None:
367
- if rules == {False}:
368
- # only included stuff, no match = reject
369
- return False
370
- # only excluded stuff, or included and excluded stuff, no match = keep
371
- return True
368
+ # When we only include stuff, no match = reject.
369
+ # When we only exclude stuff, or include and exclude stuff, no match = keep.
370
+ return rules != {False}
372
371
  return keep
373
372
 
374
373
 
@@ -4,7 +4,7 @@ This template renders a Python attribute (or variable).
4
4
  This can be a module attribute or a class attribute.
5
5
 
6
6
  Context:
7
- attribute (griffe.dataclasses.Attribute): The attribute to render.
7
+ attribute (griffe.Attribute): The attribute to render.
8
8
  root (bool): Whether this is the root object, injected with `:::` in a Markdown page.
9
9
  heading_level (int): The HTML heading level to use.
10
10
  config (dict): The configuration options.
@@ -4,13 +4,13 @@ This template iterates on members of a given object and renders them.
4
4
  It can group members by category (attributes, classes, functions, modules) or render them in a flat list.
5
5
 
6
6
  Context:
7
- obj (griffe.dataclasses.Object): The object to render.
7
+ obj (griffe.Object): The object to render.
8
8
  config (dict): The configuration options.
9
9
  root_members (bool): Whether the object is the root object.
10
10
  heading_level (int): The HTML heading level to use.
11
11
  -#}
12
12
 
13
- {% if obj.members %}
13
+ {% if obj.all_members %}
14
14
  {% block logs scoped %}
15
15
  {#- Logging block.
16
16
 
@@ -3,7 +3,7 @@
3
3
  This template renders a Python class.
4
4
 
5
5
  Context:
6
- class (griffe.dataclasses.Class): The class to render.
6
+ class (griffe.Class): The class to render.
7
7
  root (bool): Whether this is the root object, injected with `:::` in a Markdown page.
8
8
  heading_level (int): The HTML heading level to use.
9
9
  config (dict): The configuration options.
@@ -3,7 +3,7 @@
3
3
  This template renders admonitions using the `details` HTML element.
4
4
 
5
5
  Context:
6
- section (griffe.docstrings.dataclasses.DocstringSectionAdmonition): The section to render.
6
+ section (griffe.DocstringSectionAdmonition): The section to render.
7
7
  -#}
8
8
 
9
9
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented attributes in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented classes in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented examples.
4
4
  It alternates between rendering text and code examples.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented functions in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented modules in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented other parameters in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented parameters in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented exceptions in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented received values (generators) in the f
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented returned values in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented warnings in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented yielded values (generators) in the fo
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -5,7 +5,7 @@ Griffe parses docstrings into a list of sections, each with a `kind` and a `valu
5
5
  This template can then iterate on these sections and render them according to the configuration.
6
6
 
7
7
  Context:
8
- docstring_sections (list[griffe.docstrings.dataclasses.DocstringSection]): The list of docstring sections.
8
+ docstring_sections (list[griffe.DocstringSection]): The list of docstring sections.
9
9
  config (dict): The configuration dictionary.
10
10
  heading_level (int): The heading level to use for Markdown conversion.
11
11
  html_id (str): The HTML ID to use for Markdown conversion.
@@ -17,7 +17,7 @@ which is a tree-like structure representing a Python expression.
17
17
  This macro outputs a cross-reference to the given name.
18
18
 
19
19
  Parameters:
20
- name (griffe.expressions.ExprName): The name to cross-reference.
20
+ name (griffe.ExprName): The name to cross-reference.
21
21
  annotation_path (str): Either "brief", "source", or "full".
22
22
 
23
23
  Returns:
@@ -48,7 +48,7 @@ which is a tree-like structure representing a Python expression.
48
48
  {#- Render an expression.
49
49
 
50
50
  Parameters:
51
- expression (griffe.expressions.Expr): The expression to render.
51
+ expression (griffe.Expr): The expression to render.
52
52
  annotations_path (str): Either "brief", "source", or "full".
53
53
 
54
54
  Returns:
@@ -3,7 +3,7 @@
3
3
  This template renders a Python function or method.
4
4
 
5
5
  Context:
6
- function (griffe.dataclasses.Function): The function to render.
6
+ function (griffe.Function): The function to render.
7
7
  root (bool): Whether this is the root object, injected with `:::` in a Markdown page.
8
8
  heading_level (int): The HTML heading level to use.
9
9
  config (dict): The configuration options.
@@ -3,7 +3,7 @@
3
3
  This template renders a Python module.
4
4
 
5
5
  Context:
6
- module (griffe.dataclasses.Module): The module to render.
6
+ module (griffe.Module): The module to render.
7
7
  root (bool): Whether this is the root object, injected with `:::` in a Markdown page.
8
8
  heading_level (int): The HTML heading level to use.
9
9
  config (dict): The configuration options.
@@ -5,7 +5,7 @@ It iterates over the parameters of the function to rebuild the signature.
5
5
  The signature is the list of parameters of a function or method, including their names, default values, and annotations.
6
6
 
7
7
  Context:
8
- function (griffe.dataclasses.Function): The function or method to render.
8
+ function (griffe.Function): The function or method to render.
9
9
  config (dict): The configuration options.
10
10
  -#}
11
11
 
@@ -4,7 +4,7 @@ This template renders a list of documented attributes in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented other parameters in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented parameters in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented exceptions in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented received values (generators) in the f
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented returned values in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented warnings in the format
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -4,7 +4,7 @@ This template renders a list of documented yielded values (generators) in the fo
4
4
  specified with the [`docstring_section_style`][] configuration option.
5
5
 
6
6
  Context:
7
- section (griffe.docstrings.dataclasses.DocstringSectionAttributes): The section to render.
7
+ section (griffe.DocstringSectionAttributes): The section to render.
8
8
  -#}
9
9
 
10
10
  {% block logs scoped %}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mkdocstrings-python
3
- Version: 1.10.5
3
+ Version: 1.10.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: ISC
@@ -29,7 +29,7 @@ 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
31
  Requires-Dist: mkdocstrings>=0.25
32
- Requires-Dist: griffe>=0.47
32
+ Requires-Dist: griffe>=0.48
33
33
  Description-Content-Type: text/markdown
34
34
 
35
35
  <h1 align="center">mkdocstrings-python</h1>
@@ -1,46 +1,46 @@
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=aRrjQpaW-zR_3S9K-oElyxsNUecs3yATi6BoGfz6p9w,24337
3
+ mkdocstrings_handlers/python/handler.py,sha256=kBtn7O213IJjWxLhaqIBuz-jdhgeJ159OIPAl6EBjJk,24287
4
4
  mkdocstrings_handlers/python/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
- mkdocstrings_handlers/python/rendering.py,sha256=kxy4MKpEUb_WzxXVXLnZ16HCFzqvWbuaDQQXGiIIV1U,18039
5
+ mkdocstrings_handlers/python/rendering.py,sha256=AWoWTDwzFAjuGdzC8ZuxBKP8INPrLmPsm3B4LbFxzVg,17950
6
6
  mkdocstrings_handlers/python/templates/material/_base/attribute.html,sha256=nn0671f4bE7VqnTs-VQL3SGPACWAxb2uJBRcP2nwYng,427
7
- mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja,sha256=T29m8kLAh7ZWnik7wgdT0MvZLfmyUl2BXDMriZynuDA,4373
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
9
- mkdocstrings_handlers/python/templates/material/_base/children.html.jinja,sha256=vV9nyK1LaWe9L4jJvOFlvZWXqNAuXXuzZ4wwoi3dp7E,6422
9
+ mkdocstrings_handlers/python/templates/material/_base/children.html.jinja,sha256=o7JzhXx1OSo9MM-z_gks6H1aTETIPFFvTyE1St392Xs,6414
10
10
  mkdocstrings_handlers/python/templates/material/_base/class.html,sha256=x0M8Wjk7TC9cgnstMoukLVQvxZUEMFjQA0VJQPEAC9Y,415
11
- mkdocstrings_handlers/python/templates/material/_base/class.html.jinja,sha256=lkEExDnNqFbyjG0EsJoygU9ZrrSGAk3KT8uVcqo6_Ok,7241
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=Js6GCcTFoDZ61lKt6k1XpOJ6QsKKFzDEr1RGDhXDa40,2997
13
+ mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja,sha256=-6i1ZkgG9lwFMgIN5VzejweHt8Ge9ZTWcrsE2PRhDas,2974
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=ecbqOsDzPJAvon_ZiBiQNUTjvZfM3dQ760AwpXyc3PA,658
15
+ mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja,sha256=zdJPdN7hQ-lisIQU6yumC26awgoebtXbH10CR8FvQEo,635
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=zAWuRLCh--_c05OAX-bAQ25z5B_n0UkuSp0mXsjbQg0,4122
17
+ mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja,sha256=KHgnGJHMK6RFJfKnCWAnPoDLwcKdFkqycVjLUCWkBdE,4099
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=zP2e8R_xnm0XR-4VOPBs0RvPDwMacFy02iIdgwy2CGw,3089
19
+ mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja,sha256=8Ss7jU8pJmuxkA5xxT7wpv4C50omNoIhTEFtPuB4oWg,3066
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=14yFBnWr5MVENpW6-dIaITiHrgFyr-eDVsinvbBm8DY,983
21
+ mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja,sha256=MAF1QJKLVQaLhZzdk-3LEcfdvTUac6u5EcEuAmeaaFw,960
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=PoBuUeHJ6i6bhXT6TuJuX2Gc8iSIhPKKxBfIWHsOufc,3628
23
+ mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja,sha256=hfnk686Drh61gMOXdLdHJEsUmAm67QhF5H6Z9LpcOZw,3605
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=5WzpItLOzkmQLg9TiL78DLX_igfsEIXDQQFng_vO-U8,3103
25
+ mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja,sha256=ja49-_cYSxhnrr4d_lVY775h_TaEtFqVuUEhmdTjXS0,3080
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=zWa5cWcYEOU3cJpWHpznoz-Ax6cSY2Vk6CxqDNkoqG8,3920
27
+ mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja,sha256=euftwT4ckVzwklzJQ9JfznTx1vcD0NTUswOa67A-rz8,3897
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=tjzAZ090iP7piVYP1lmJ5JLKb1VbRkMIbwnDbnqncws,4933
29
+ mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja,sha256=psVWXQLq9b6a3gQhCp3DP3p0G6HxW6hfw-PoCLd3y_0,4910
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=ZBIyAJm9ghWBjE5k0ee7HFBXmIY5BxAdOVlxYLV__B4,3502
31
+ mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja,sha256=JkkSu41dGJNZDHTUgeFHVCXHZMvQnkDQGemlSNWzgaQ,3479
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=KrtShPGAzI1dYIHrZdDuQLXJAFy4UH-COFKiNm50Bew,4595
33
+ mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja,sha256=n9_xf7iZOYj0Oebyq5BzUES_3wtLO6-iEtFYKSAyx8s,4572
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=9Qj_jbqqMQ1gTkWYE4-PCqKP40S5rWG9nv40QQFzcD8,4559
35
+ mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja,sha256=6Ep77cYpqQgR-Wjx9y3xNxPONzTi-NlEAYgcgdPx5HE,4536
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=uXDzKextjOtQ0ljMeOOrOCcd1CNKUOjkOInXimTf1Jw,3474
37
+ mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja,sha256=IMEx6QHHOVtIC9OLuEEiC03-iBW6NRppvmdKW1orwQI,3451
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=IPN3d4Ej5oUKSkP0eO5UPmIOM4T5ZLwICFkQt01825Q,4533
39
+ mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja,sha256=8B9dOocrYMffBCPN6DImWcuWp_5dFJ9_6EaMYpdmKxk,4510
40
40
  mkdocstrings_handlers/python/templates/material/_base/expression.html,sha256=JU-ScDWoFk0m6x0Dx50LKN9yW7RzTWj4VYcJYEIQ144,430
41
- mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja,sha256=x5Ylg1H3h4NWSgYF-eLTUllxCBlYgD7aq-7ZzAgdgpA,3100
41
+ mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja,sha256=3uF_EVyGlUH_XqIGC6VR8EIgchlkjysT5wFik0BTah4,3076
42
42
  mkdocstrings_handlers/python/templates/material/_base/function.html,sha256=tFpXIt5sIhjXjTCXhtYZ4cGpbgdbaIdbm8HdP9Pccik,424
43
- mkdocstrings_handlers/python/templates/material/_base/function.html.jinja,sha256=VMpa7wzBQjcJJa69VfykHcgAc2M57KiOT61icBYiECo,5250
43
+ mkdocstrings_handlers/python/templates/material/_base/function.html.jinja,sha256=L7McTQ63BIoQR8VZNs2q8W_qSDSJrqYjekcJd4DD3oM,5238
44
44
  mkdocstrings_handlers/python/templates/material/_base/labels.html,sha256=SJGvRoTYj9AImTRRn-SP4nGAdpfz-ai4gGgHGxMOJK8,418
45
45
  mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja,sha256=xGgvyJCTx4-uxqUzz1cX2_hszNSdgH5P8T4qVc7Rbvw,790
46
46
  mkdocstrings_handlers/python/templates/material/_base/language.html,sha256=Qvw8RvhTvKk3-OobTEOyWsh5yE3WbIWW4meoR4X_5fY,424
@@ -52,9 +52,9 @@ mkdocstrings_handlers/python/templates/material/_base/languages/ja.html.jinja,sh
52
52
  mkdocstrings_handlers/python/templates/material/_base/languages/zh.html,sha256=qpCtwgIj9xjbsPDApJE3W34s-V7Syg_iFeN8zX5kZqY,436
53
53
  mkdocstrings_handlers/python/templates/material/_base/languages/zh.html.jinja,sha256=p8AtmAqXBDu1ZWnrWk8hclnNyOCBs1UVGxmKg4dxqGg,1073
54
54
  mkdocstrings_handlers/python/templates/material/_base/module.html,sha256=cEq3DXlXfZ57NAK6CXA7OxtyeffgfUpWVvLW1O1aNzw,418
55
- mkdocstrings_handlers/python/templates/material/_base/module.html.jinja,sha256=kYs29-9emHdCK-jMMH1Q1rEMWrJCfu_EaPSUCqxNoQU,3825
55
+ mkdocstrings_handlers/python/templates/material/_base/module.html.jinja,sha256=2gVT8yrQpalCE1Z5t9z5E7A8mkRFFw1BVl8-FEcPXJ0,3813
56
56
  mkdocstrings_handlers/python/templates/material/_base/signature.html,sha256=7TcpvSL7n5pbg0Eokbx49vlLbY6YHM6S8o7aFpaxgXU,427
57
- mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja,sha256=I-jjUMFfNXika1zwgVhxbZIx3eou_FHfTzkOeVb76eM,3621
57
+ mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja,sha256=0SgtxQ_zYZQ-hIKBnQSsm_PnWX03nU0yyVBiJM-D2do,3609
58
58
  mkdocstrings_handlers/python/templates/material/_base/summary.html,sha256=2OR2p8zJ5I0mkknX7ZY7qj59orJH4e9HVg0S5DaUUsU,421
59
59
  mkdocstrings_handlers/python/templates/material/_base/summary.html.jinja,sha256=GQtXFwa7gy-66DlF-l57ZKukEFkyAbTUnJY-voHBEeo,197
60
60
  mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html,sha256=CSrl1A7woDmRxgMpYHArnKQGgilSbk8fvXgsx1OzPwU,454
@@ -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=MnmgAhY7bGj4ucuLIzIoMDb2wisIPEvxDR48HHNge0U,1537
132
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja,sha256=-Bym8-IOamO2hR7C2gCzZy_gqAbM7XEl7tKRQuiUwAE,1514
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=7Qq-QcmMl4vyzxfW4GYJye_27GVrvRDpO_DXqMb0huI,1555
134
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja,sha256=B1Y_INdaJoWf1Q62HoOYUaFReSMgYj9UsaN2UNcOvXA,1532
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=UJ3rqSp523Kp7qNd9MIwntqg9f5__XXo8BLvExfOv-I,1823
136
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja,sha256=F__7OIxFKI0o8iBEmxmOZzFXkeRroPVJEs2ueScWXg0,1800
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=eY2rrNJtoU-mPEjcRsK39nVSAnDO39SW6v-h-hERTNk,1460
138
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja,sha256=ZzguuCYMLvCWkmnsSkg885zWq_iV4dOH2qC8Q7jTcUo,1437
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=6WB4JMtGkA_KS9b1rHyovlU67RK75z1Nd4XYH-Y5ffU,1683
140
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja,sha256=PKtF8izcfOgwx-N4vSac1SmlS9pwnDSyKTu_ymY1li4,1660
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=Sg9mJurd1Bfum29T2MWUasoGWWg8zZm-3B6pFYITyrs,1660
142
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja,sha256=v8hrrfBCwnDooJ62D-fwozYVQFhrYuGbapQuzPg5TfE,1637
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=yyc34Y6Xya_Noe4QoeI1MRbGzyzU6Tbr8kagAziPzq8,1452
144
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja,sha256=0_xjs6kg9aT1uV7d2Bdl_fr5I-X3nVaw7wOZgbwLnuQ,1429
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=XntbLO1vqCPJhstR0ExO7ftHLOXBSUP0injP97SexMw,1663
146
+ mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja,sha256=gKBcors6eTQVRe6CzYe23bZ5pVHKjMvp-m_M3oU-Evo,1640
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.10.5.dist-info/METADATA,sha256=8g7gRZYlJxBaCLfr_Ur4W8ELr616ky8GJk7ZdOHPgic,5551
181
- mkdocstrings_python-1.10.5.dist-info/WHEEL,sha256=SOP-4bEE0jbVaCHQGVvF08uWxk5rcSsfEybvoQVHlD8,90
182
- mkdocstrings_python-1.10.5.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
183
- mkdocstrings_python-1.10.5.dist-info/RECORD,,
180
+ mkdocstrings_python-1.10.7.dist-info/METADATA,sha256=qsVkseUMXacuI4pNbjM7SAcqNKG-crylnsuQHxTQIL8,5551
181
+ mkdocstrings_python-1.10.7.dist-info/WHEEL,sha256=rSwsxJWe3vzyR5HCwjWXQruDgschpei4h_giTm0dJVE,90
182
+ mkdocstrings_python-1.10.7.dist-info/licenses/LICENSE,sha256=JGb4pdPEM8TTjjhr-uNCO7oXkiVrwG5Pz0JamcjNF_s,754
183
+ mkdocstrings_python-1.10.7.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: pdm-backend (2.3.1)
2
+ Generator: pdm-backend (2.3.3)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any