mkdocstrings-python 1.16.12__tar.gz → 1.18.0__tar.gz
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_python-1.16.12 → mkdocstrings_python-1.18.0}/CHANGELOG.md +27 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/PKG-INFO +3 -3
- mkdocstrings_python-1.18.0/docs/snippets/package/generics.py +49 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/docstrings.md +113 -4
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/general.md +60 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/headings.md +129 -1
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/members.md +1 -1
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/signatures.md +148 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/customization.md +56 -2
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/index.md +4 -2
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/duties.py +4 -4
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/mkdocs.yml +2 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/pyproject.toml +4 -4
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/__init__.py +4 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/config.py +140 -4
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/handler.py +13 -4
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/rendering.py +105 -8
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja +4 -2
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/children.html.jinja +29 -4
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/class.html.jinja +34 -22
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja +3 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_aliases.html +10 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_aliases.html.jinja +86 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_parameters.html +10 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/docstring/type_parameters.html.jinja +208 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja +6 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja +51 -1
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/function.html.jinja +7 -3
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html.jinja +11 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html.jinja +12 -1
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html.jinja +12 -1
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/module.html.jinja +2 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/summary/type_aliases.html +10 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/summary/type_aliases.html.jinja +24 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary.html.jinja +5 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/type_alias.html +10 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/type_alias.html.jinja +120 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/type_parameters.html +10 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/_base/type_parameters.html.jinja +89 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/docstring/type_aliases.html +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/docstring/type_aliases.html.jinja +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/docstring/type_parameters.html +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/docstring/type_parameters.html.jinja +1 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/style.css +35 -3
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/summary/type_aliases.html +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/summary/type_aliases.html.jinja +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/type_alias.html +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/type_alias.html.jinja +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/type_parameters.html +1 -0
- mkdocstrings_python-1.18.0/src/mkdocstrings_handlers/python/templates/material/type_parameters.html.jinja +1 -0
- mkdocstrings_python-1.16.12/tests/snapshots/external/d1dd339f926026210ea46cc75922a8236f43cade477f95e4ce4c9a60248f0a10.html → mkdocstrings_python-1.18.0/tests/snapshots/headings/heading=,separate_signature=False.html +1 -3
- mkdocstrings_python-1.16.12/tests/snapshots/external/2eef87791b974c724d2cd98e40bb25994087bc836868f63da18557a6094a00ee.html → mkdocstrings_python-1.18.0/tests/snapshots/headings/heading=,separate_signature=True.html +1 -3
- mkdocstrings_python-1.16.12/tests/snapshots/external/480324b25439ea41507fdda100045132d578af0e1df1219c08bc9ea0bea1f39c.html → mkdocstrings_python-1.18.0/tests/snapshots/headings/heading=Some heading,separate_signature=False.html +1 -3
- mkdocstrings_python-1.16.12/tests/snapshots/external/51deee0f00f35b0902f82fb96a36d547a80dfbb41a311dabd94b96fd968b83bc.html → mkdocstrings_python-1.18.0/tests/snapshots/headings/heading=Some heading,separate_signature=True.html +1 -3
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=False.html +169 -0
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=True.html +189 -0
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=False.html +117 -0
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=True.html +137 -0
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=False.html +169 -0
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=True.html +189 -0
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=False.html +117 -0
- mkdocstrings_python-1.18.0/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=True.html +129 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/test_end_to_end.py +81 -18
- mkdocstrings_python-1.16.12/tests/snapshots/__init__.py +0 -405
- mkdocstrings_python-1.16.12/tests/snapshots/external/.gitignore +0 -2
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/CODE_OF_CONDUCT.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/CONTRIBUTING.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/LICENSE +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/README.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/black.toml +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/coverage.ini +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/git-changelog.toml +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/mypy.ini +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/pytest.ini +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/ruff.toml +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/vscode/launch.json +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/vscode/settings.json +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/config/vscode/tasks.json +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/.glossary.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/.overrides/main.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/.overrides/partials/comments.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/.overrides/partials/path-item.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/changelog.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/code_of_conduct.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/contributing.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/credits.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/css/insiders.css +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/css/material.css +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/css/mkdocstrings.css +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/index.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/insiders/changelog.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/insiders/goals.yml +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/insiders/index.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/insiders/installation.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/js/feedback.js +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/js/insiders.js +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/license.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/logo.png +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/reference/api.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/snippets/package/__init__.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/snippets/package/modern.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/docstrings/google.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/docstrings/numpy.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/docstrings/sphinx.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/extensions.md +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/scripts/gen_credits.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/scripts/get_version.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/scripts/griffe_extensions.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/scripts/insiders.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/scripts/make +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/scripts/make.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/scripts/mkdocs_hooks.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/__init__.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/debug.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/config.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/handler.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/py.typed +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/rendering.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/children.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/class.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/function.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/language.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/module.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/attribute.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/attribute.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/backlinks.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/children.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/children.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/class.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/class.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/expression.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/expression.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/function.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/function.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/labels.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/labels.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/language.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/en.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/module.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/module.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/signature.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/signature.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/style.css +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/__init__.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/conftest.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/helpers.py +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/26bc66c2ba29feddfbd06c2490eca42ec5a8f62db8d650231b0748ddce8c85f1.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/42c053a5e567a777dfde62cd0d061112dc8098f90e71f71d5aceba8be188fcf7.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/c6e7ef9564cdc8449a98c0ef790d652dee02c47b1339f858fc1d7a54aae9ed46.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/fe1cd23642d405d0b2a4d29ec4a2125f55b54f90c2440ee2d856540415e77745.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/9720526cf5e4c44f27695c59764bb1e05e428834744442f43527ebf2b8acfb35.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/6d12192d6b4dc0633bad697a683a3cdf3b2b9ceeb839044c72c63b469914f0a1.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/c260e7f4ef3b8b228bb25879d3adcf6610f1c2c971c9c46b5665d276716b8821.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/74bfab19cbd4ba02673f6b9ee736a3b6727936de92f73f299ba238491f619937.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/3935bcf6d71b58daa0e4512cbf3f53e19516885fb65d0bd760c12aadd021507f.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/84193b3c9f5d84fef33daa61fb61aa9a3e66171d312de8d7f836c69f0bc069b0.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/247a6063b698c285bfef7addfd972ddf797f6a90dfd5a3e649e6e4c127b86562.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/fb5ebb7546d8d63744d7e6713ab5317b8c3d00d1108d28d7ef2949994b41dcbd.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/eee65d3705a655eec6512c4aa09d55f5d2e7c62dd245fed4b3f002a5e9a4d646.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/d556527026068280df9b77db277472320842cb1ae6099ac3cf558031afda6d2e.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/fe25ab7600392b4fd3a1438fb54337041719faac884123527bab9a92e3a51be5.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/96cf94f4822a5cf5d72407eab5a5dddda972f16623f7710f738ffe2bcf9130d9.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/28d8862dd086c7d523516dd4091b57e5babd34165edccf619b62a06fc1936cd5.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/d726cb8367d95b67ce78e718e88ee528d3abc2fbd04413d1c11916a243d7567a.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/8733f7fb7b6d28b15bbe736f29c7fd030467c0ccfa2cbc6a68616e06c6dc6a9b.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/34b16654e7baa8e16315cef2919f2eafa51ba39ec28c4c970fe7ea8e2c79f9d2.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/8b097c69ac2fd52857f33e1b008f4d99a53ed21894c51517b3d79da445b0a705.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/f8f32ea6a0c80a63854f8c8d78b3706797feb3042ac88c8fcf0a6da277eddb9d.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/f0014d9505eceb38ba1e36c380a97ebe4d43669929ec1cdedba4d418899aecc7.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/cfcd41685591bcc497f9d1e9fd20006fc3acd857f068e78e6d1c2461bbd4063f.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/e8608b0de174402ca18f88ed58849312158c22f5bfdc845d2da02055fe14853c.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/f6e292b8358a04e3471ba11c8820307076be3cf83b0a9ec2fb5c949324b7e172.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/a185e216dc7b7ebb31b46ea0e7ed446cf9da94eee8db306f08bae1ca0db0ca1d.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/76ee8e01e1c0b94de84d79da8443bc24f601f89cab70eae1b2af5ee21cfb1f3a.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/c9a15552eed32a233795c2086a7c766ad95e05197d30d881540fbe52cdc07ff8.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/13334b5b4fcf7267539b9eb99ca2ab79c66766ec6f35383f4bfcb6a8d9e2a116.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/5a9c10410801aa75b33878971b939da701df9a7ce8006dc7781c148d27a89756.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/d5a6bf59c663338bef9fdc2391f482aee444228e86e23357c11881498e711bb2.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/7107066872137b807b3f9d897e75eff78f5783b14d3c88e71c6477eaa8493113.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/62e18d3e57777d911c7fdee1fcc032a9c23ffe82913060e3b66f29bf81a6a585.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/cd3e458517147c43c360525140aa1b9a81682634aaf2674ffd4cceb7fc44aba6.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/8d4e1f9af9971bd21234c7c45dfbd59a1aee444bfa0cd3b9cfb6d052d378a041.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/95f8e480937f7a2b956392ed4d8058052d9748874cdd911feacdd31d1abe5d97.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/f3f3acb6b51ba98f5a06e7c62e85b791b6521504f19a8d7496592dee59c7f199.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/2bf34b4dd82e753b21200ec980cb197c530710fe8c150c4dd3fbbfb7d38928cc.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/3c21330afd6529769164afe388e9385a9fddb3ae628124965e0c7b81932a0c63.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/e90c3e0c85ddaa068f3d063c6a1ef718bb3ae2092760b707e838fb73164b3720.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/4892e0fe1920c0bb22fa4787b6e76cccaa968163b35641d705f288c04fe4937e.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/ab0ddac637b536c06014746a4a8f8e0921b074015ae19680abf5df995c233ba1.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/e5dc372374af6f90a5d456d8683aacdf81104137ce91bd6d4121827f8d989d96.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/cd51e40cc0ddf1d42b7c6bf7560ead2501370ee9d67499b74afc83e258caff8e.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/388a13d71284b1a4b0c457e9c8d1ec60dfefb8871c69ceb1d7a035bd3bdadab8.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/11598fec2d07bb675dfa8a57e49136f18a94eedec6bc5a036dcecc005e70dc80.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/366b0537fe0625a10d55203a3532de5c360e49fb403078a82ec408d829afcb72.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/19f98a747c015a074f3d3362d03ed72f9da9db3aefe969a0d78c4052e7594372.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/027ef7afeffc56219a09298c7db30f473c4dfdda12d99a171e9c76098c316067.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/09d96d69d9dcbc54c8189fb885e8e06269c51be673389f29fa8b2d90cff54eb2.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/fba0d78ae23e4f52b5e6f0fe003ea3edf681a937f647b11925e9932006648a11.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/5cf0130e3b4fdd536b1c99ee66c66ec4245e286bf75b989cf50979ce187e1a16.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/eac5bee59a9ee0a64602fd6bb8f4f54cb5f3543aa321169921326288a61f556c.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/fca72854c849dc68c3ad072a41c32f926f95c6e88775f3e2eeaa63138d99837c.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/9d03089a46fab9a86b0836444cabb6225798eaf25be6fd4171bd73b7354509b6.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/c915eb92fd5dcc4e2c9da41ca72c726e65fcd85804942be0c67b4f05f452a549.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/b0a9b08f1f721721c4dd110cb8f85ffda5caf1f1479851275bc227857fb01400.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/14bca0e5703be9cab876200d88cccd1d728d1bdfef7cbfac751af212e00a8663.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/722165bce3ada19df43b169ea982ab4908d94cd1bf19b777e1e6bc22e8aa02a5.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=(),inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/afd5c166367dd47e4f9843d906b3a1ad12398888fdad84bfbda3de8b19072611.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/4f60da13e2d45e803f73ed41746d8b3570f0dac7e132efb1bf0cdbf77e9e2c59.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/e3defc3620e5fee20f9400c33b7b541fde66297f257d9baf1b0f94b3ea49e6e0.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/43d819f94dc7cafe9ed60ce604bab9a938f42a115dc534cb72d12e15e998e96d.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/75b69b702f3b5fa3bc0d30091297b0a09a8915eb7f0e1f7be1ce99f5d59d9514.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/166b8dfab738b90f2ff0df84a048df96539455d9cad42b09b248ab65b5c742e2.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/f77f1c850398f972a7ae2229f918ba497874115be6c5e9431838b4bb6931b2f4.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/44e42f27bfe3d3b5ec14700c247c83195b1c6eea319d1a0679b2baa797d9859c.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/fd291f98ca28b8f15b5a8ed6a2608bacf5b5322599bcbf0544ef8e9c0a27870b.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/dcf34c2f72697f7a4700e4a1f048d601f374eab35eea68c9beb8bab8fc269aed.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/a200913d9a7d51c52ab58f6fc4e9ea7be278d7890c46cf28ecc3cfd35a36fb46.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/fb770e6537bc1b98c0de03db7810404967562a2ffd1700ca35c9788949ca55c0.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/9bd282a6f2fe82f3ffe66b175bf90ab3e808e3a67f3c15a9f9e3e143d7956e49.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/0f046dea611f6c9e90b8eaed720f22af372394971808e2a5d1b3a12286f1ec76.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/f4150843096a1371b097478f8d67062e3d45ab9f6a8f97e79ae62d32abc5e22a.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/bd6594ae3b516bf84cd0b0e6605087f430f62d787c32225ac8b4039c92e20b76.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/ce06da7f07b34e4f9071c5c001a8626f2d5fd8eed9a3ba81abebd76f8afc6861.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/3f5d794823a451ec9d4ed8c7e16d1354d39b74380402b255ee60741e97c9960c.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/ea914f1afa9de4b5eddc9792c2b6a5d8de367274278976092bb824e99e523ca5.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/c0f102dbd7d4de76de40c06a8205a642465f5fde9a37b4b969aa01f161ef25a4.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=None,inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/408244423577f9b2598b319118c5f4a0a495116b06ebb2877a0964d526ec18e0.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/51d73351dc5546cefc8087b8409ebb7841c879fb48c875ff4cba6fbadee64014.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/6abf5ddd819b832a1593ece448c90e63e13faa4376cca76b4fddc4d52a47f8b0.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/6af55596d9c42d2634baadf77df6060caba2bd9c2d634576378cc18131c0efba.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/6c0b7207df0351e1d5232859a5c13b72533fb8c87e5dc0e971b185f8dfe38c84.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/d56d3aeae22be9b2494a085b812f0a3a5fabdbef184198de0462a0b944393891.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/2e866eca9a45f82cd1e16bb55bbc2a03bb19548457598bca83141cb375fb1aa3.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/46daa7e60b98815685904dd397f0de19cf1a94397d2165418a4f9fec02c7b560.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/6d72c524b827a2e4fd84a17b2aecfffca0d05bfa3fc38815f89836607e5a6c92.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/74e2496015e194b88a30c9d0a4d9309bf74c122d1d24aecaa4d9c9c392057d1a.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/80399c502938940d34e928b35648146970dc524534fe2e7f7127ccb32e3067d0.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/135f57223e006849dcdd1463367127e4c5ee4aba5f12bde17ab3e494dbeed490.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/9dab67183389335dadba724875c80c49909904aa135e65c6c411c3a903d458da.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/b4e20d5cd52e746cc7473537a2318a9ad886c5d8d8654c8d4f85fe209b04d86b.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/a255ee80bf7a569ab3aa55ea94af24ce6671dace3d6075df5d14a3ff428ceb8b.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/e254ae60f9af14754001bc63b74a3c473f5198cf2a58f4d30ad6d5a4c196e67c.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/f48d651b3f1a2ce91910e05f4c3f7a7ec95e7d0e88d4503f101610d74029ce23.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/ed5d07bcdbaa3f295c0cb1544d54b196728ed6c70f4d6c902991baca6f16193c.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/16295fa51a2c3a60d1461a9a14093603333f836326a007d8eb061f78ab38a712.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/37232379c426474cc962db72ded419e39c3e416c30e367c8745f3be4e86557a4.html → /mkdocstrings_python-1.18.0/tests/snapshots/members/filters=public,inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/b060b701543e5503dc848538a164e80480ab25f8885aa83b97776e6b0cc6b570.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/6a02b544c12c68b75d9bf3b85b1800830fd980daabff9df8c3760eb6edea7915.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/d1216ebf8e30ec559861678318efb45bef54a847517e5d90e130818c2a06b163.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/735fc6ffdb82ce35cdab2aed2389a630e4d2c7ad95308bc5c7a56a8a8930b37f.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/d03d16d1919af01db9b8d4e5bf36b007810eb3730a7283624a4d68c6fe2ce652.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/4041a38e355f6585a7e1265509d7c5b499fe3776aeeeb298db7589bb385ca019.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/74ee37cd1e94250baa33050af088e7341495708d879ab45ee9e8ab1dcac26f2a.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.12/tests/snapshots/external/e412376be64f25f3f5d2264400a83a1e693c146feec7c359855c676c4a586392.html → /mkdocstrings_python-1.18.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/test_api.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/test_handler.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/test_rendering.py +0 -0
- {mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/tests/test_themes.py +0 -0
|
@@ -5,6 +5,33 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
<!-- insertion marker -->
|
|
8
|
+
## [1.18.0](https://github.com/mkdocstrings/python/releases/tag/1.18.0) - 2025-08-26
|
|
9
|
+
|
|
10
|
+
<small>[Compare with 1.17.0](https://github.com/mkdocstrings/python/compare/1.17.0...1.18.0)</small>
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- Support PEP 695 generics ([dc8c3ad](https://github.com/mkdocstrings/python/commit/dc8c3adb23b37add6601de9e74085f76e5fc9ee5) by Victor Westerhuis). [PR-221](https://github.com/mkdocstrings/python/pull/221), Co-authored-by: Timothée Mazzucotelli <dev@pawamoy.fr>
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- Increase maximum recursion limit in case of deeply nested ASTs (rare occurrence) ([6004ccf](https://github.com/mkdocstrings/python/commit/6004ccf3576c7a20e21c880bb2235b7b426ba382) by Timothée Mazzucotelli). [Issue-griffe-402](https://github.com/mkdocstrings/griffe/issues/402)
|
|
19
|
+
|
|
20
|
+
## [1.17.0](https://github.com/mkdocstrings/python/releases/tag/1.17.0) - 2025-08-14
|
|
21
|
+
|
|
22
|
+
<small>[Compare with 1.16.12](https://github.com/mkdocstrings/python/compare/1.16.12...1.17.0)</small>
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
|
|
26
|
+
- Support new Griffe parsing options `warn_missing_types` and `warnings` ([0e3bdb8](https://github.com/mkdocstrings/python/commit/0e3bdb857b5ede3e15aa7a9b8b87b33f68889c9e) by Timothée Mazzucotelli). [Issue-mkdocstrings-437](https://github.com/mkdocstrings/mkdocstrings/issues/437)
|
|
27
|
+
- Add `skip_local_inventory` option to prevent objects from being registered in the local objects inventory ([e82c24f](https://github.com/mkdocstrings/python/commit/e82c24f17513fba4cff22e90f0a82c00a01a077d) by Bartosz Sławecki). [Issue-296](https://github.com/mkdocstrings/python/issues/296), [Issue-mkdocstrings-671](https://github.com/mkdocstrings/mkdocstrings/issues/671), [PR-297](https://github.com/mkdocstrings/python/pull/297)
|
|
28
|
+
- Support hiding attribute values ([6cf34b9](https://github.com/mkdocstrings/python/commit/6cf34b9882e20d9147a6481e672ae09989a27796) by Bartosz Sławecki). Issue-292: #292, PR-293: #293
|
|
29
|
+
- Support hiding implementation signature (showing overload only) ([d3b35e1](https://github.com/mkdocstrings/python/commit/d3b35e17384901e7280b8b6926f10fb033480358) by Bartosz Sławecki). [Issue-213](https://github.com/mkdocstrings/python/issues/213), [PR-286](https://github.com/mkdocstrings/python/pull/286)
|
|
30
|
+
|
|
31
|
+
### Code Refactoring
|
|
32
|
+
|
|
33
|
+
- Deprecate `locale` option in favor of mkdocstrings' ([17f71ba](https://github.com/mkdocstrings/python/commit/17f71babf11081869478b21b2bde1a33fc97be41) by Timothée Mazzucotelli). [PR-288](https://github.com/mkdocstrings/python/pull/288)
|
|
34
|
+
|
|
8
35
|
## [1.16.12](https://github.com/mkdocstrings/python/releases/tag/1.16.12) - 2025-06-03
|
|
9
36
|
|
|
10
37
|
<small>[Compare with 1.16.11](https://github.com/mkdocstrings/python/compare/1.16.11...1.16.12)</small>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocstrings-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.18.0
|
|
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
|
|
@@ -30,9 +30,9 @@ Project-URL: Discussions, https://github.com/mkdocstrings/python/discussions
|
|
|
30
30
|
Project-URL: Gitter, https://gitter.im/mkdocstrings/python
|
|
31
31
|
Project-URL: Funding, https://github.com/sponsors/pawamoy
|
|
32
32
|
Requires-Python: >=3.9
|
|
33
|
-
Requires-Dist: mkdocstrings>=0.
|
|
33
|
+
Requires-Dist: mkdocstrings>=0.30
|
|
34
34
|
Requires-Dist: mkdocs-autorefs>=1.4
|
|
35
|
-
Requires-Dist: griffe>=1.
|
|
35
|
+
Requires-Dist: griffe>=1.13
|
|
36
36
|
Requires-Dist: typing-extensions>=4.0; python_version < "3.11"
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"""Some module showing generics.
|
|
2
|
+
|
|
3
|
+
Type Aliases:
|
|
4
|
+
SomeType: Some type alias.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
type SomeType[Z] = int | list[Z]
|
|
8
|
+
"""Some type alias.
|
|
9
|
+
|
|
10
|
+
Type parameters:
|
|
11
|
+
Z: Some type parameter.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
class MagicBag[T: (str, bytes) = str](list[T]):
|
|
16
|
+
"""A magic bag of items.
|
|
17
|
+
|
|
18
|
+
Type parameters:
|
|
19
|
+
T: Some type.
|
|
20
|
+
"""
|
|
21
|
+
|
|
22
|
+
def __init__[U: (int, bool)](self, *args: T, flag1: U | None = None, flag2: U | None = None) -> None:
|
|
23
|
+
"""Initialize bag.
|
|
24
|
+
|
|
25
|
+
Type parameters:
|
|
26
|
+
U: Some flag type.
|
|
27
|
+
|
|
28
|
+
Parameters:
|
|
29
|
+
flag1: Some flag.
|
|
30
|
+
flag2: Some flag.
|
|
31
|
+
"""
|
|
32
|
+
super().__init__(args)
|
|
33
|
+
self.flag1 = flag1
|
|
34
|
+
self.flag2 = flag2
|
|
35
|
+
|
|
36
|
+
def mutate[K](self, item: T, into: K) -> K:
|
|
37
|
+
"""Shake the bag to mutate an item into something else (and eject it).
|
|
38
|
+
|
|
39
|
+
Type parameters:
|
|
40
|
+
K: Some other type.
|
|
41
|
+
|
|
42
|
+
Parameters:
|
|
43
|
+
item: The item to mutate.
|
|
44
|
+
into: Mutate the item into something like this.
|
|
45
|
+
|
|
46
|
+
Returns:
|
|
47
|
+
The mutated item.
|
|
48
|
+
"""
|
|
49
|
+
...
|
{mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/docstrings.md
RENAMED
|
@@ -623,7 +623,7 @@ class ClassWithoutDocstring:
|
|
|
623
623
|
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
624
624
|
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
|
|
625
625
|
|
|
626
|
-
Whether to render the "Attributes"
|
|
626
|
+
Whether to render the "Attributes" section of docstrings.
|
|
627
627
|
|
|
628
628
|
```yaml title="in mkdocs.yml (global configuration)"
|
|
629
629
|
plugins:
|
|
@@ -676,7 +676,7 @@ class Class:
|
|
|
676
676
|
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
677
677
|
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
|
|
678
678
|
|
|
679
|
-
Whether to render the "Functions" or "Methods"
|
|
679
|
+
Whether to render the "Functions" or "Methods" section of docstrings.
|
|
680
680
|
|
|
681
681
|
```yaml title="in mkdocs.yml (global configuration)"
|
|
682
682
|
plugins:
|
|
@@ -751,7 +751,7 @@ class Class:
|
|
|
751
751
|
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
752
752
|
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
|
|
753
753
|
|
|
754
|
-
Whether to render the "Classes"
|
|
754
|
+
Whether to render the "Classes" section of docstrings.
|
|
755
755
|
|
|
756
756
|
```yaml title="in mkdocs.yml (global configuration)"
|
|
757
757
|
plugins:
|
|
@@ -804,13 +804,71 @@ class Class:
|
|
|
804
804
|
////
|
|
805
805
|
///
|
|
806
806
|
|
|
807
|
+
[](){#option-show_docstring_type_aliases}
|
|
808
|
+
## `show_docstring_type_aliases`
|
|
809
|
+
|
|
810
|
+
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
811
|
+
|
|
812
|
+
Whether to render the "Type Aliases" section of docstrings.
|
|
813
|
+
|
|
814
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
815
|
+
plugins:
|
|
816
|
+
- mkdocstrings:
|
|
817
|
+
handlers:
|
|
818
|
+
python:
|
|
819
|
+
options:
|
|
820
|
+
show_docstring_type_aliases: true
|
|
821
|
+
```
|
|
822
|
+
|
|
823
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
824
|
+
::: path.to.module
|
|
825
|
+
options:
|
|
826
|
+
show_docstring_type_aliases: false
|
|
827
|
+
```
|
|
828
|
+
|
|
829
|
+
```python
|
|
830
|
+
"""Summary.
|
|
831
|
+
|
|
832
|
+
Type Aliases:
|
|
833
|
+
TypeAlias: Some type alias.
|
|
834
|
+
"""
|
|
835
|
+
|
|
836
|
+
|
|
837
|
+
type TypeAlias = int
|
|
838
|
+
"""Summary."""
|
|
839
|
+
```
|
|
840
|
+
|
|
841
|
+
/// admonition | Preview
|
|
842
|
+
type: preview
|
|
843
|
+
|
|
844
|
+
//// tab | With type_aliases
|
|
845
|
+
<h2>module</h2>
|
|
846
|
+
<p>Summary.</p>
|
|
847
|
+
<p><b>Type Aliases:</b></p>
|
|
848
|
+
|
|
849
|
+
**Name** | **Description**
|
|
850
|
+
------------ | ----------------
|
|
851
|
+
`TypeAlias` | Some type alias.
|
|
852
|
+
|
|
853
|
+
<h3><code>TypeAlias</code></h3>
|
|
854
|
+
<p>Summary.</p>
|
|
855
|
+
////
|
|
856
|
+
|
|
857
|
+
//// tab | Without classes
|
|
858
|
+
<h2>module</h2>
|
|
859
|
+
<p>Summary.</p>
|
|
860
|
+
<h3><code>TypeAlias</code></h3>
|
|
861
|
+
<p>Summary.</p>
|
|
862
|
+
////
|
|
863
|
+
///
|
|
864
|
+
|
|
807
865
|
[](){#option-show_docstring_modules}
|
|
808
866
|
## `show_docstring_modules`
|
|
809
867
|
|
|
810
868
|
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
811
869
|
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
|
|
812
870
|
|
|
813
|
-
Whether to render the "Modules"
|
|
871
|
+
Whether to render the "Modules" section of docstrings.
|
|
814
872
|
|
|
815
873
|
```yaml title="in mkdocs.yml (global configuration)"
|
|
816
874
|
plugins:
|
|
@@ -1245,6 +1303,57 @@ def rand() -> int:
|
|
|
1245
1303
|
////
|
|
1246
1304
|
///
|
|
1247
1305
|
|
|
1306
|
+
[](){#option-show_docstring_type_parameters}
|
|
1307
|
+
## `show_docstring_type_parameters`
|
|
1308
|
+
|
|
1309
|
+
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
1310
|
+
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
|
|
1311
|
+
|
|
1312
|
+
Whether to render the "Type Parameters" section of docstrings.
|
|
1313
|
+
|
|
1314
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
1315
|
+
plugins:
|
|
1316
|
+
- mkdocstrings:
|
|
1317
|
+
handlers:
|
|
1318
|
+
python:
|
|
1319
|
+
options:
|
|
1320
|
+
show_docstring_type_parameters: true
|
|
1321
|
+
```
|
|
1322
|
+
|
|
1323
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
1324
|
+
::: path.to.module
|
|
1325
|
+
options:
|
|
1326
|
+
show_docstring_type_parameters: false
|
|
1327
|
+
```
|
|
1328
|
+
|
|
1329
|
+
```python
|
|
1330
|
+
class AClass[X: (int, str) = str]:
|
|
1331
|
+
"""Represents something.
|
|
1332
|
+
|
|
1333
|
+
Type Parameters:
|
|
1334
|
+
X: Something.
|
|
1335
|
+
"""
|
|
1336
|
+
```
|
|
1337
|
+
|
|
1338
|
+
/// admonition | Preview
|
|
1339
|
+
type: preview
|
|
1340
|
+
|
|
1341
|
+
//// tab | With parameters
|
|
1342
|
+
<h2><code>AClass</code></h2>
|
|
1343
|
+
<p>Represents something.</p>
|
|
1344
|
+
<p><b>Type Parameters:</b></p>
|
|
1345
|
+
|
|
1346
|
+
**Name** | **Bound or Constraints** | **Description** | **Default**
|
|
1347
|
+
---------- | ------------------------ | --------------- | -----------
|
|
1348
|
+
`whatever` | `(int, str)` | Something. | `str`
|
|
1349
|
+
////
|
|
1350
|
+
|
|
1351
|
+
//// tab | Without parameters
|
|
1352
|
+
<h2><code>AClass</code></h2>
|
|
1353
|
+
<p>Represents something.</p>
|
|
1354
|
+
////
|
|
1355
|
+
///
|
|
1356
|
+
|
|
1248
1357
|
[](){#option-show_docstring_warns}
|
|
1249
1358
|
## `show_docstring_warns`
|
|
1250
1359
|
|
{mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/general.md
RENAMED
|
@@ -494,3 +494,63 @@ def some_function():
|
|
|
494
494
|
<p>Docstring of the function.</p>
|
|
495
495
|
////
|
|
496
496
|
///
|
|
497
|
+
|
|
498
|
+
[](){#option-skip_local_inventory}
|
|
499
|
+
## `skip_local_inventory`
|
|
500
|
+
|
|
501
|
+
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
|
|
502
|
+
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
|
|
503
|
+
|
|
504
|
+
Whether to skip registering symbols in the objects inventory.
|
|
505
|
+
|
|
506
|
+
With this option enabled, re-rendering docstrings for objects from external inventories is possible with their cross-references pointing to the original external inventory, not local. Similarly, it becomes possible to render the same symbol several times in the same documentation, with only one canonical location being used for cross-references (preventing confusion in mkdocs-autorefs).
|
|
507
|
+
|
|
508
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
509
|
+
plugins:
|
|
510
|
+
- mkdocstrings:
|
|
511
|
+
handlers:
|
|
512
|
+
python:
|
|
513
|
+
options:
|
|
514
|
+
skip_local_inventory: false
|
|
515
|
+
```
|
|
516
|
+
|
|
517
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
518
|
+
::: path.to.module
|
|
519
|
+
options:
|
|
520
|
+
skip_local_inventory: true
|
|
521
|
+
```
|
|
522
|
+
|
|
523
|
+
/// admonition | Preview
|
|
524
|
+
type: preview
|
|
525
|
+
|
|
526
|
+
|
|
527
|
+
//// tab | Without `skip_local_inventory`
|
|
528
|
+
|
|
529
|
+
```md exec="on"
|
|
530
|
+
::: bisect.bisect_left
|
|
531
|
+
options:
|
|
532
|
+
heading_level: 3
|
|
533
|
+
skip_local_inventory: false
|
|
534
|
+
show_docstring_description: false
|
|
535
|
+
```
|
|
536
|
+
|
|
537
|
+
Notice how [`bisect.bisect_left`][] now points to the section above.
|
|
538
|
+
|
|
539
|
+
////
|
|
540
|
+
|
|
541
|
+
//// tab | With `skip_local_inventory`
|
|
542
|
+
|
|
543
|
+
```md exec="on"
|
|
544
|
+
::: bisect.bisect_right
|
|
545
|
+
inventories:
|
|
546
|
+
- https://docs.python.org/3/objects.inv
|
|
547
|
+
options:
|
|
548
|
+
heading_level: 3
|
|
549
|
+
skip_local_inventory: true
|
|
550
|
+
show_docstring_description: false
|
|
551
|
+
```
|
|
552
|
+
|
|
553
|
+
Notice how [`bisect.bisect_right`][] points to the original Python documentation.
|
|
554
|
+
|
|
555
|
+
////
|
|
556
|
+
///
|
{mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/headings.md
RENAMED
|
@@ -88,7 +88,7 @@ With this option enabled, each function/method parameter
|
|
|
88
88
|
(including parameters of `__init__` methods merged in their parent class
|
|
89
89
|
with the [`merge_init_into_class`][] option)
|
|
90
90
|
gets a permalink, an entry in the Table of Contents,
|
|
91
|
-
and an entry in the generated objects inventory.
|
|
91
|
+
and an entry in the generated objects inventory (unless [`skip_local_inventory`][] is enabled).
|
|
92
92
|
The permalink and inventory entry allow cross-references
|
|
93
93
|
from internal and external pages.
|
|
94
94
|
|
|
@@ -682,3 +682,131 @@ NOTE: **Use with/without `heading`.** If you use this option without specifying
|
|
|
682
682
|
heading: "My fancy module"
|
|
683
683
|
toc_label: "My fancy module"
|
|
684
684
|
```
|
|
685
|
+
|
|
686
|
+
[](){#option-type_parameter_headings}
|
|
687
|
+
## `type_parameter_headings`
|
|
688
|
+
|
|
689
|
+
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
|
|
690
|
+
|
|
691
|
+
Whether to render headings for generic class, function/method and type alias
|
|
692
|
+
type parameters.
|
|
693
|
+
|
|
694
|
+
With this option enabled, each type parameter of a generic object (including
|
|
695
|
+
type parameters of `__init__` methods merged in their parent class with the
|
|
696
|
+
[`merge_init_into_class`][] option) gets a permalink, an entry in the Table of
|
|
697
|
+
Contents, and an entry in the generated objects inventory. The permalink and
|
|
698
|
+
inventory entry allow cross-references from internal and external pages.
|
|
699
|
+
|
|
700
|
+
<!-- TODO: Update when https://github.com/mkdocstrings/griffe/issues/404 is solved.
|
|
701
|
+
The identifier used in the permalink and inventory is of the following form:
|
|
702
|
+
`path.to.function:type_param_name`. To manually cross-reference a parameter,
|
|
703
|
+
you can therefore use this Markdown syntax:
|
|
704
|
+
|
|
705
|
+
```md
|
|
706
|
+
- Class type parameter: [`Param`][package.module.Class[Param\]]
|
|
707
|
+
- Method type parameter: [`Param`][package.module.Class.method[Param\]]
|
|
708
|
+
- Function type parameter: [`Param`][package.module.function[Param\]]
|
|
709
|
+
- Type alias type parameter: [`Param`][package.module.TypeAlias[Param\]]
|
|
710
|
+
- Type variable tuple: [`*Args`][package.module.function[*Args\]]
|
|
711
|
+
- Parameter specification: [`**Params`][package.module.function[**Params\]]
|
|
712
|
+
```
|
|
713
|
+
-->
|
|
714
|
+
|
|
715
|
+
Enabling this option along with [`signature_crossrefs`][] will automatically
|
|
716
|
+
render cross-references to type parameters in class/function/method/type alias
|
|
717
|
+
signatures.
|
|
718
|
+
|
|
719
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
720
|
+
plugins:
|
|
721
|
+
- mkdocstrings:
|
|
722
|
+
handlers:
|
|
723
|
+
python:
|
|
724
|
+
options:
|
|
725
|
+
type_parameter_headings: false
|
|
726
|
+
```
|
|
727
|
+
|
|
728
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
729
|
+
::: path.to.module
|
|
730
|
+
options:
|
|
731
|
+
type_parameter_headings: true
|
|
732
|
+
```
|
|
733
|
+
|
|
734
|
+
/// admonition | Preview: Cross-references
|
|
735
|
+
type: preview
|
|
736
|
+
|
|
737
|
+
```md exec="on"
|
|
738
|
+
::: package.generics
|
|
739
|
+
options:
|
|
740
|
+
show_root_heading: false
|
|
741
|
+
heading_level: 3
|
|
742
|
+
docstring_section_style: list
|
|
743
|
+
show_bases: true
|
|
744
|
+
summary: false
|
|
745
|
+
separate_signature: true
|
|
746
|
+
show_signature_type_parameters: true
|
|
747
|
+
type_parameter_headings: true
|
|
748
|
+
```
|
|
749
|
+
|
|
750
|
+
///
|
|
751
|
+
|
|
752
|
+
/// admonition | Preview: Type parameter sections
|
|
753
|
+
type: preview
|
|
754
|
+
|
|
755
|
+
//// tab | Table style
|
|
756
|
+
```md exec="on"
|
|
757
|
+
::: package.generics.MagicBag
|
|
758
|
+
options:
|
|
759
|
+
members: false
|
|
760
|
+
heading_level: 3
|
|
761
|
+
show_root_heading: false
|
|
762
|
+
show_root_toc_entry: false
|
|
763
|
+
parameter_headings: true
|
|
764
|
+
docstring_section_style: table
|
|
765
|
+
show_docstring_description: false
|
|
766
|
+
show_docstring_parameters: false
|
|
767
|
+
show_docstring_returns: false
|
|
768
|
+
```
|
|
769
|
+
////
|
|
770
|
+
|
|
771
|
+
//// tab | List style
|
|
772
|
+
```md exec="on"
|
|
773
|
+
::: package.generics.MagicBag
|
|
774
|
+
options:
|
|
775
|
+
members: false
|
|
776
|
+
heading_level: 3
|
|
777
|
+
show_root_heading: false
|
|
778
|
+
show_root_toc_entry: false
|
|
779
|
+
parameter_headings: true
|
|
780
|
+
docstring_section_style: list
|
|
781
|
+
show_docstring_description: false
|
|
782
|
+
show_docstring_parameters: false
|
|
783
|
+
show_docstring_returns: false
|
|
784
|
+
```
|
|
785
|
+
////
|
|
786
|
+
|
|
787
|
+
//// tab | Spacy style
|
|
788
|
+
```md exec="on"
|
|
789
|
+
::: package.generics.MagicBag
|
|
790
|
+
options:
|
|
791
|
+
members: false
|
|
792
|
+
heading_level: 3
|
|
793
|
+
show_root_heading: false
|
|
794
|
+
show_root_toc_entry: false
|
|
795
|
+
parameter_headings: true
|
|
796
|
+
docstring_section_style: spacy
|
|
797
|
+
show_docstring_description: false
|
|
798
|
+
show_docstring_parameters: false
|
|
799
|
+
show_docstring_returns: false
|
|
800
|
+
```
|
|
801
|
+
////
|
|
802
|
+
///
|
|
803
|
+
|
|
804
|
+
/// admonition | Preview: Table of contents (with symbol types)
|
|
805
|
+
type: preview
|
|
806
|
+
|
|
807
|
+
<code class="doc-symbol doc-symbol-toc doc-symbol-function"></code> mutate<br>
|
|
808
|
+
<code class="doc-symbol doc-symbol-toc doc-symbol-type_parameter" style="margin-left: 16px;"></code> U
|
|
809
|
+
|
|
810
|
+
To customize symbols, see [Customizing symbol types](../customization.md/#symbol-types).
|
|
811
|
+
|
|
812
|
+
///
|
{mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/members.md
RENAMED
|
@@ -585,7 +585,7 @@ package
|
|
|
585
585
|
Whether to render summaries of modules, classes, functions (methods) and attributes.
|
|
586
586
|
|
|
587
587
|
This option accepts a boolean (`yes`, `true`, `no`, `false` in YAML)
|
|
588
|
-
or a dictionary with one or more of the following keys: `attributes`, `functions`, `classes`, `modules`,
|
|
588
|
+
or a dictionary with one or more of the following keys: `attributes`, `functions`, `classes`, `modules`, `type_aliases`,
|
|
589
589
|
with booleans as values. Class methods summary is (de)activated with the `functions` key.
|
|
590
590
|
By default, `summary` is false, and by extension all values are false.
|
|
591
591
|
|
{mkdocstrings_python-1.16.12 → mkdocstrings_python-1.18.0}/docs/usage/configuration/signatures.md
RENAMED
|
@@ -286,6 +286,56 @@ plugins:
|
|
|
286
286
|
|
|
287
287
|
///
|
|
288
288
|
|
|
289
|
+
[](){#option-overloads_only}
|
|
290
|
+
## `overloads_only`
|
|
291
|
+
|
|
292
|
+
Whether to hide the implementation signature if the overloads are shown with [`show_overloads`][].
|
|
293
|
+
|
|
294
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
295
|
+
plugins:
|
|
296
|
+
- mkdocstrings:
|
|
297
|
+
handlers:
|
|
298
|
+
python:
|
|
299
|
+
options:
|
|
300
|
+
overloads_only: true
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
304
|
+
::: path.to.module
|
|
305
|
+
options:
|
|
306
|
+
overloads_only: true
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
/// admonition | Preview
|
|
310
|
+
type: preview
|
|
311
|
+
//// tab | With overloads only
|
|
312
|
+
<h2>function</h2>
|
|
313
|
+
|
|
314
|
+
```python
|
|
315
|
+
@overload
|
|
316
|
+
function(param1: int): ...
|
|
317
|
+
@overload
|
|
318
|
+
function(param1: str): ...
|
|
319
|
+
```
|
|
320
|
+
Function docstring.
|
|
321
|
+
|
|
322
|
+
////
|
|
323
|
+
//// tab | Without overloads only
|
|
324
|
+
<h2>function</h2>
|
|
325
|
+
|
|
326
|
+
```python
|
|
327
|
+
@overload
|
|
328
|
+
function(param1: int): ...
|
|
329
|
+
@overload
|
|
330
|
+
function(param1: str): ...
|
|
331
|
+
function(param1: str | int)
|
|
332
|
+
```
|
|
333
|
+
Function docstring.
|
|
334
|
+
|
|
335
|
+
////
|
|
336
|
+
|
|
337
|
+
///
|
|
338
|
+
|
|
289
339
|
[](){#option-show_signature}
|
|
290
340
|
## `show_signature`
|
|
291
341
|
|
|
@@ -380,6 +430,61 @@ function(param1, param2=None)
|
|
|
380
430
|
////
|
|
381
431
|
///
|
|
382
432
|
|
|
433
|
+
[](){#option-show_signature_type_parameters}
|
|
434
|
+
## `show_signature_type_parameters`
|
|
435
|
+
|
|
436
|
+
- **:octicons-package-24: Type [`bool`][] :material-equal: `False`{ title="default value" }**
|
|
437
|
+
<!-- - **:octicons-project-template-24: Template :material-null:** (N/A) -->
|
|
438
|
+
|
|
439
|
+
Show the type parameters in generic classes, methods, functions and type aliases
|
|
440
|
+
signatures.
|
|
441
|
+
|
|
442
|
+
Since the heading can become quite long when type parameters are rendered, it is
|
|
443
|
+
usually best to [separate the signature][separate_signature] from the heading.
|
|
444
|
+
|
|
445
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
446
|
+
plugins:
|
|
447
|
+
- mkdocstrings:
|
|
448
|
+
handlers:
|
|
449
|
+
python:
|
|
450
|
+
options:
|
|
451
|
+
separate_signature: true
|
|
452
|
+
show_signature_annotations: true
|
|
453
|
+
show_signature_type_parameters: true
|
|
454
|
+
```
|
|
455
|
+
|
|
456
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
457
|
+
::: path.to.module
|
|
458
|
+
options:
|
|
459
|
+
separate_signature: true
|
|
460
|
+
show_signature_annotations: true
|
|
461
|
+
show_signature_type_parameters: false
|
|
462
|
+
```
|
|
463
|
+
|
|
464
|
+
/// admonition | Preview
|
|
465
|
+
type: preview
|
|
466
|
+
|
|
467
|
+
//// tab | With signature type parameters
|
|
468
|
+
<h2>function</h2>
|
|
469
|
+
|
|
470
|
+
```python
|
|
471
|
+
function[T, *R](param: T) -> tuple[*R]
|
|
472
|
+
```
|
|
473
|
+
|
|
474
|
+
<p>Function docstring.</p>
|
|
475
|
+
////
|
|
476
|
+
|
|
477
|
+
//// tab | Without signature type parameters
|
|
478
|
+
<h2>function</h2>
|
|
479
|
+
|
|
480
|
+
```python
|
|
481
|
+
function(param: T) -> tuple[*R]
|
|
482
|
+
```
|
|
483
|
+
|
|
484
|
+
<p>Function docstring.</p>
|
|
485
|
+
////
|
|
486
|
+
///
|
|
487
|
+
|
|
383
488
|
[](){#option-separate_signature}
|
|
384
489
|
## `separate_signature`
|
|
385
490
|
|
|
@@ -433,6 +538,49 @@ function(param1, param2=None)
|
|
|
433
538
|
////
|
|
434
539
|
///
|
|
435
540
|
|
|
541
|
+
[](){#option-show_attribute_values}
|
|
542
|
+
## `show_attribute_values`
|
|
543
|
+
|
|
544
|
+
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
545
|
+
<!-- - **:octicons-project-template-24: Template :material-null:** (contained in [`class.html`][class template]) -->
|
|
546
|
+
|
|
547
|
+
Show initial values of attributes in classes.
|
|
548
|
+
|
|
549
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
550
|
+
plugins:
|
|
551
|
+
- mkdocstrings:
|
|
552
|
+
handlers:
|
|
553
|
+
python:
|
|
554
|
+
options:
|
|
555
|
+
show_attribute_values: true
|
|
556
|
+
```
|
|
557
|
+
|
|
558
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
559
|
+
::: path.to.object
|
|
560
|
+
options:
|
|
561
|
+
show_attribute_values: true
|
|
562
|
+
```
|
|
563
|
+
|
|
564
|
+
```python title="package/module.py"
|
|
565
|
+
class SomeClass:
|
|
566
|
+
def __init__(self):
|
|
567
|
+
self.some_attr = 1
|
|
568
|
+
```
|
|
569
|
+
|
|
570
|
+
/// admonition | Preview
|
|
571
|
+
type: preview
|
|
572
|
+
|
|
573
|
+
//// tab | With attribute values visible
|
|
574
|
+
<h2><code>SomeClass</code></h2>
|
|
575
|
+
<p>some_attr = 1</p>
|
|
576
|
+
////
|
|
577
|
+
|
|
578
|
+
//// tab | With attribute values hidden
|
|
579
|
+
<h2><code>SomeClass</code></h2>
|
|
580
|
+
<p>some_attr</p>
|
|
581
|
+
////
|
|
582
|
+
///
|
|
583
|
+
|
|
436
584
|
[](){#option-show_overloads}
|
|
437
585
|
## `show_overloads`
|
|
438
586
|
|