mkdocstrings-python 1.16.11__tar.gz → 1.17.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.11 → mkdocstrings_python-1.17.0}/CHANGELOG.md +23 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/PKG-INFO +3 -3
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/configuration/general.md +60 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/configuration/headings.md +1 -1
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/configuration/signatures.md +93 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/index.md +4 -2
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/duties.py +1 -1
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/pyproject.toml +4 -4
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/_internal/config.py +90 -1
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/_internal/handler.py +7 -4
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/_internal/rendering.py +7 -6
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja +4 -2
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/children.html.jinja +4 -4
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/class.html.jinja +2 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja +3 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/function.html.jinja +3 -1
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/module.html.jinja +2 -0
- mkdocstrings_python-1.16.11/tests/snapshots/external/d1dd339f926026210ea46cc75922a8236f43cade477f95e4ce4c9a60248f0a10.html → mkdocstrings_python-1.17.0/tests/snapshots/headings/heading=,separate_signature=False.html +1 -3
- mkdocstrings_python-1.16.11/tests/snapshots/external/2eef87791b974c724d2cd98e40bb25994087bc836868f63da18557a6094a00ee.html → mkdocstrings_python-1.17.0/tests/snapshots/headings/heading=,separate_signature=True.html +1 -3
- mkdocstrings_python-1.16.11/tests/snapshots/external/480324b25439ea41507fdda100045132d578af0e1df1219c08bc9ea0bea1f39c.html → mkdocstrings_python-1.17.0/tests/snapshots/headings/heading=Some heading,separate_signature=False.html +1 -3
- mkdocstrings_python-1.16.11/tests/snapshots/external/51deee0f00f35b0902f82fb96a36d547a80dfbb41a311dabd94b96fd968b83bc.html → mkdocstrings_python-1.17.0/tests/snapshots/headings/heading=Some heading,separate_signature=True.html +1 -3
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=False.html +169 -0
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=True.html +189 -0
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=False.html +117 -0
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=True.html +137 -0
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=False.html +169 -0
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=True.html +189 -0
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=False.html +117 -0
- mkdocstrings_python-1.17.0/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=True.html +129 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/test_end_to_end.py +80 -17
- mkdocstrings_python-1.16.11/tests/snapshots/__init__.py +0 -405
- mkdocstrings_python-1.16.11/tests/snapshots/external/.gitignore +0 -2
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/CODE_OF_CONDUCT.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/CONTRIBUTING.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/LICENSE +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/README.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/black.toml +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/coverage.ini +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/git-changelog.toml +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/mypy.ini +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/pytest.ini +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/ruff.toml +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/vscode/launch.json +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/vscode/settings.json +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/config/vscode/tasks.json +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/.glossary.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/.overrides/main.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/.overrides/partials/comments.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/.overrides/partials/path-item.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/changelog.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/code_of_conduct.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/contributing.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/credits.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/css/insiders.css +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/css/material.css +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/css/mkdocstrings.css +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/index.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/insiders/changelog.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/insiders/goals.yml +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/insiders/index.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/insiders/installation.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/js/feedback.js +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/js/insiders.js +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/license.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/logo.png +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/reference/api.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/snippets/package/__init__.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/snippets/package/modern.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/configuration/docstrings.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/configuration/members.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/customization.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/docstrings/google.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/docstrings/numpy.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/docstrings/sphinx.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/docs/usage/extensions.md +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/mkdocs.yml +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/scripts/gen_credits.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/scripts/get_version.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/scripts/griffe_extensions.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/scripts/insiders.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/scripts/make +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/scripts/make.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/scripts/mkdocs_hooks.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/__init__.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/_internal/__init__.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/_internal/debug.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/config.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/handler.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/py.typed +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/rendering.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/children.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/class.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/function.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/language.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/module.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/attribute.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/attribute.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/backlinks.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/children.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/children.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/class.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/class.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/docstring.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/expression.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/expression.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/function.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/function.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/labels.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/labels.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/language.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/languages/en.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/module.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/module.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/signature.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/signature.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/style.css +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/material/summary.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/src/mkdocstrings_handlers/python/templates/readthedocs/style.css +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/__init__.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/conftest.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/helpers.py +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/26bc66c2ba29feddfbd06c2490eca42ec5a8f62db8d650231b0748ddce8c85f1.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/42c053a5e567a777dfde62cd0d061112dc8098f90e71f71d5aceba8be188fcf7.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/c6e7ef9564cdc8449a98c0ef790d652dee02c47b1339f858fc1d7a54aae9ed46.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/fe1cd23642d405d0b2a4d29ec4a2125f55b54f90c2440ee2d856540415e77745.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/9720526cf5e4c44f27695c59764bb1e05e428834744442f43527ebf2b8acfb35.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/6d12192d6b4dc0633bad697a683a3cdf3b2b9ceeb839044c72c63b469914f0a1.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/c260e7f4ef3b8b228bb25879d3adcf6610f1c2c971c9c46b5665d276716b8821.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/74bfab19cbd4ba02673f6b9ee736a3b6727936de92f73f299ba238491f619937.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/3935bcf6d71b58daa0e4512cbf3f53e19516885fb65d0bd760c12aadd021507f.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/84193b3c9f5d84fef33daa61fb61aa9a3e66171d312de8d7f836c69f0bc069b0.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/247a6063b698c285bfef7addfd972ddf797f6a90dfd5a3e649e6e4c127b86562.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/fb5ebb7546d8d63744d7e6713ab5317b8c3d00d1108d28d7ef2949994b41dcbd.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/eee65d3705a655eec6512c4aa09d55f5d2e7c62dd245fed4b3f002a5e9a4d646.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/d556527026068280df9b77db277472320842cb1ae6099ac3cf558031afda6d2e.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/fe25ab7600392b4fd3a1438fb54337041719faac884123527bab9a92e3a51be5.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/96cf94f4822a5cf5d72407eab5a5dddda972f16623f7710f738ffe2bcf9130d9.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/28d8862dd086c7d523516dd4091b57e5babd34165edccf619b62a06fc1936cd5.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/d726cb8367d95b67ce78e718e88ee528d3abc2fbd04413d1c11916a243d7567a.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/8733f7fb7b6d28b15bbe736f29c7fd030467c0ccfa2cbc6a68616e06c6dc6a9b.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/34b16654e7baa8e16315cef2919f2eafa51ba39ec28c4c970fe7ea8e2c79f9d2.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/8b097c69ac2fd52857f33e1b008f4d99a53ed21894c51517b3d79da445b0a705.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/f8f32ea6a0c80a63854f8c8d78b3706797feb3042ac88c8fcf0a6da277eddb9d.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/f0014d9505eceb38ba1e36c380a97ebe4d43669929ec1cdedba4d418899aecc7.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/cfcd41685591bcc497f9d1e9fd20006fc3acd857f068e78e6d1c2461bbd4063f.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/e8608b0de174402ca18f88ed58849312158c22f5bfdc845d2da02055fe14853c.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/f6e292b8358a04e3471ba11c8820307076be3cf83b0a9ec2fb5c949324b7e172.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/a185e216dc7b7ebb31b46ea0e7ed446cf9da94eee8db306f08bae1ca0db0ca1d.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/76ee8e01e1c0b94de84d79da8443bc24f601f89cab70eae1b2af5ee21cfb1f3a.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/c9a15552eed32a233795c2086a7c766ad95e05197d30d881540fbe52cdc07ff8.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/13334b5b4fcf7267539b9eb99ca2ab79c66766ec6f35383f4bfcb6a8d9e2a116.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/5a9c10410801aa75b33878971b939da701df9a7ce8006dc7781c148d27a89756.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/d5a6bf59c663338bef9fdc2391f482aee444228e86e23357c11881498e711bb2.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/7107066872137b807b3f9d897e75eff78f5783b14d3c88e71c6477eaa8493113.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/62e18d3e57777d911c7fdee1fcc032a9c23ffe82913060e3b66f29bf81a6a585.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/cd3e458517147c43c360525140aa1b9a81682634aaf2674ffd4cceb7fc44aba6.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/8d4e1f9af9971bd21234c7c45dfbd59a1aee444bfa0cd3b9cfb6d052d378a041.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/95f8e480937f7a2b956392ed4d8058052d9748874cdd911feacdd31d1abe5d97.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/f3f3acb6b51ba98f5a06e7c62e85b791b6521504f19a8d7496592dee59c7f199.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/2bf34b4dd82e753b21200ec980cb197c530710fe8c150c4dd3fbbfb7d38928cc.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/3c21330afd6529769164afe388e9385a9fddb3ae628124965e0c7b81932a0c63.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/e90c3e0c85ddaa068f3d063c6a1ef718bb3ae2092760b707e838fb73164b3720.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/4892e0fe1920c0bb22fa4787b6e76cccaa968163b35641d705f288c04fe4937e.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/ab0ddac637b536c06014746a4a8f8e0921b074015ae19680abf5df995c233ba1.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/e5dc372374af6f90a5d456d8683aacdf81104137ce91bd6d4121827f8d989d96.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/cd51e40cc0ddf1d42b7c6bf7560ead2501370ee9d67499b74afc83e258caff8e.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/388a13d71284b1a4b0c457e9c8d1ec60dfefb8871c69ceb1d7a035bd3bdadab8.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/11598fec2d07bb675dfa8a57e49136f18a94eedec6bc5a036dcecc005e70dc80.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/366b0537fe0625a10d55203a3532de5c360e49fb403078a82ec408d829afcb72.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/19f98a747c015a074f3d3362d03ed72f9da9db3aefe969a0d78c4052e7594372.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/027ef7afeffc56219a09298c7db30f473c4dfdda12d99a171e9c76098c316067.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/09d96d69d9dcbc54c8189fb885e8e06269c51be673389f29fa8b2d90cff54eb2.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/fba0d78ae23e4f52b5e6f0fe003ea3edf681a937f647b11925e9932006648a11.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/5cf0130e3b4fdd536b1c99ee66c66ec4245e286bf75b989cf50979ce187e1a16.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/eac5bee59a9ee0a64602fd6bb8f4f54cb5f3543aa321169921326288a61f556c.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/fca72854c849dc68c3ad072a41c32f926f95c6e88775f3e2eeaa63138d99837c.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/9d03089a46fab9a86b0836444cabb6225798eaf25be6fd4171bd73b7354509b6.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/c915eb92fd5dcc4e2c9da41ca72c726e65fcd85804942be0c67b4f05f452a549.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/b0a9b08f1f721721c4dd110cb8f85ffda5caf1f1479851275bc227857fb01400.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/14bca0e5703be9cab876200d88cccd1d728d1bdfef7cbfac751af212e00a8663.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/722165bce3ada19df43b169ea982ab4908d94cd1bf19b777e1e6bc22e8aa02a5.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=(),inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/afd5c166367dd47e4f9843d906b3a1ad12398888fdad84bfbda3de8b19072611.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/4f60da13e2d45e803f73ed41746d8b3570f0dac7e132efb1bf0cdbf77e9e2c59.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/e3defc3620e5fee20f9400c33b7b541fde66297f257d9baf1b0f94b3ea49e6e0.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/43d819f94dc7cafe9ed60ce604bab9a938f42a115dc534cb72d12e15e998e96d.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/75b69b702f3b5fa3bc0d30091297b0a09a8915eb7f0e1f7be1ce99f5d59d9514.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/166b8dfab738b90f2ff0df84a048df96539455d9cad42b09b248ab65b5c742e2.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/f77f1c850398f972a7ae2229f918ba497874115be6c5e9431838b4bb6931b2f4.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/44e42f27bfe3d3b5ec14700c247c83195b1c6eea319d1a0679b2baa797d9859c.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/fd291f98ca28b8f15b5a8ed6a2608bacf5b5322599bcbf0544ef8e9c0a27870b.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/dcf34c2f72697f7a4700e4a1f048d601f374eab35eea68c9beb8bab8fc269aed.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/a200913d9a7d51c52ab58f6fc4e9ea7be278d7890c46cf28ecc3cfd35a36fb46.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/fb770e6537bc1b98c0de03db7810404967562a2ffd1700ca35c9788949ca55c0.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/9bd282a6f2fe82f3ffe66b175bf90ab3e808e3a67f3c15a9f9e3e143d7956e49.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/0f046dea611f6c9e90b8eaed720f22af372394971808e2a5d1b3a12286f1ec76.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/f4150843096a1371b097478f8d67062e3d45ab9f6a8f97e79ae62d32abc5e22a.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/bd6594ae3b516bf84cd0b0e6605087f430f62d787c32225ac8b4039c92e20b76.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/ce06da7f07b34e4f9071c5c001a8626f2d5fd8eed9a3ba81abebd76f8afc6861.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/3f5d794823a451ec9d4ed8c7e16d1354d39b74380402b255ee60741e97c9960c.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/ea914f1afa9de4b5eddc9792c2b6a5d8de367274278976092bb824e99e523ca5.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/c0f102dbd7d4de76de40c06a8205a642465f5fde9a37b4b969aa01f161ef25a4.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=None,inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/408244423577f9b2598b319118c5f4a0a495116b06ebb2877a0964d526ec18e0.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/51d73351dc5546cefc8087b8409ebb7841c879fb48c875ff4cba6fbadee64014.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/6abf5ddd819b832a1593ece448c90e63e13faa4376cca76b4fddc4d52a47f8b0.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/6af55596d9c42d2634baadf77df6060caba2bd9c2d634576378cc18131c0efba.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/6c0b7207df0351e1d5232859a5c13b72533fb8c87e5dc0e971b185f8dfe38c84.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=('method1',),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/d56d3aeae22be9b2494a085b812f0a3a5fabdbef184198de0462a0b944393891.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=(),members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/2e866eca9a45f82cd1e16bb55bbc2a03bb19548457598bca83141cb375fb1aa3.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=(),members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/46daa7e60b98815685904dd397f0de19cf1a94397d2165418a4f9fec02c7b560.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=(),members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/6d72c524b827a2e4fd84a17b2aecfffca0d05bfa3fc38815f89836607e5a6c92.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=(),members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/74e2496015e194b88a30c9d0a4d9309bf74c122d1d24aecaa4d9c9c392057d1a.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=(),members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/80399c502938940d34e928b35648146970dc524534fe2e7f7127ccb32e3067d0.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=False,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/135f57223e006849dcdd1463367127e4c5ee4aba5f12bde17ab3e494dbeed490.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=False,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/9dab67183389335dadba724875c80c49909904aa135e65c6c411c3a903d458da.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=False,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/b4e20d5cd52e746cc7473537a2318a9ad886c5d8d8654c8d4f85fe209b04d86b.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=False,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/a255ee80bf7a569ab3aa55ea94af24ce6671dace3d6075df5d14a3ff428ceb8b.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=False,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/e254ae60f9af14754001bc63b74a3c473f5198cf2a58f4d30ad6d5a4c196e67c.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=True,members=('module_attribute',).html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/f48d651b3f1a2ce91910e05f4c3f7a7ec95e7d0e88d4503f101610d74029ce23.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=True,members=().html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/ed5d07bcdbaa3f295c0cb1544d54b196728ed6c70f4d6c902991baca6f16193c.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=True,members=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/16295fa51a2c3a60d1461a9a14093603333f836326a007d8eb061f78ab38a712.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=True,members=None.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/37232379c426474cc962db72ded419e39c3e416c30e367c8745f3be4e86557a4.html → /mkdocstrings_python-1.17.0/tests/snapshots/members/filters=public,inherited_members=True,members=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/b060b701543e5503dc848538a164e80480ab25f8885aa83b97776e6b0cc6b570.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/6a02b544c12c68b75d9bf3b85b1800830fd980daabff9df8c3760eb6edea7915.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/d1216ebf8e30ec559861678318efb45bef54a847517e5d90e130818c2a06b163.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/735fc6ffdb82ce35cdab2aed2389a630e4d2c7ad95308bc5c7a56a8a8930b37f.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/d03d16d1919af01db9b8d4e5bf36b007810eb3730a7283624a4d68c6fe2ce652.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/4041a38e355f6585a7e1265509d7c5b499fe3776aeeeb298db7589bb385ca019.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/74ee37cd1e94250baa33050af088e7341495708d879ab45ee9e8ab1dcac26f2a.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
- /mkdocstrings_python-1.16.11/tests/snapshots/external/e412376be64f25f3f5d2264400a83a1e693c146feec7c359855c676c4a586392.html → /mkdocstrings_python-1.17.0/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/test_api.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/test_handler.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/test_rendering.py +0 -0
- {mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.0}/tests/test_themes.py +0 -0
|
@@ -5,6 +5,29 @@ 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.17.0](https://github.com/mkdocstrings/python/releases/tag/1.17.0) - 2025-08-14
|
|
9
|
+
|
|
10
|
+
<small>[Compare with 1.16.12](https://github.com/mkdocstrings/python/compare/1.16.12...1.17.0)</small>
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- 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)
|
|
15
|
+
- 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)
|
|
16
|
+
- Support hiding attribute values ([6cf34b9](https://github.com/mkdocstrings/python/commit/6cf34b9882e20d9147a6481e672ae09989a27796) by Bartosz Sławecki). Issue-292: #292, PR-293: #293
|
|
17
|
+
- 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)
|
|
18
|
+
|
|
19
|
+
### Code Refactoring
|
|
20
|
+
|
|
21
|
+
- 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)
|
|
22
|
+
|
|
23
|
+
## [1.16.12](https://github.com/mkdocstrings/python/releases/tag/1.16.12) - 2025-06-03
|
|
24
|
+
|
|
25
|
+
<small>[Compare with 1.16.11](https://github.com/mkdocstrings/python/compare/1.16.11...1.16.12)</small>
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- Only replace CSS class in first *highlighting* span ([d57740f](https://github.com/mkdocstrings/python/commit/d57740f874f056fb3ba1c6013ad04227df0f0af8) by Timothée Mazzucotelli). [Issue-281](https://github.com/mkdocstrings/python/issues/281)
|
|
30
|
+
|
|
8
31
|
## [1.16.11](https://github.com/mkdocstrings/python/releases/tag/1.16.11) - 2025-05-24
|
|
9
32
|
|
|
10
33
|
<small>[Compare with 1.16.10](https://github.com/mkdocstrings/python/compare/1.16.10...1.16.11)</small>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mkdocstrings-python
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.17.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.12.1
|
|
36
36
|
Requires-Dist: typing-extensions>=4.0; python_version < "3.11"
|
|
37
37
|
Description-Content-Type: text/markdown
|
|
38
38
|
|
{mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.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.11 → mkdocstrings_python-1.17.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
|
|
{mkdocstrings_python-1.16.11 → mkdocstrings_python-1.17.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
|
|
|
@@ -433,6 +483,49 @@ function(param1, param2=None)
|
|
|
433
483
|
////
|
|
434
484
|
///
|
|
435
485
|
|
|
486
|
+
[](){#option-show_attribute_values}
|
|
487
|
+
## `show_attribute_values`
|
|
488
|
+
|
|
489
|
+
- **:octicons-package-24: Type [`bool`][] :material-equal: `True`{ title="default value" }**
|
|
490
|
+
<!-- - **:octicons-project-template-24: Template :material-null:** (contained in [`class.html`][class template]) -->
|
|
491
|
+
|
|
492
|
+
Show initial values of attributes in classes.
|
|
493
|
+
|
|
494
|
+
```yaml title="in mkdocs.yml (global configuration)"
|
|
495
|
+
plugins:
|
|
496
|
+
- mkdocstrings:
|
|
497
|
+
handlers:
|
|
498
|
+
python:
|
|
499
|
+
options:
|
|
500
|
+
show_attribute_values: true
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
```md title="or in docs/some_page.md (local configuration)"
|
|
504
|
+
::: path.to.object
|
|
505
|
+
options:
|
|
506
|
+
show_attribute_values: true
|
|
507
|
+
```
|
|
508
|
+
|
|
509
|
+
```python title="package/module.py"
|
|
510
|
+
class SomeClass:
|
|
511
|
+
def __init__(self):
|
|
512
|
+
self.some_attr = 1
|
|
513
|
+
```
|
|
514
|
+
|
|
515
|
+
/// admonition | Preview
|
|
516
|
+
type: preview
|
|
517
|
+
|
|
518
|
+
//// tab | With attribute values visible
|
|
519
|
+
<h2><code>SomeClass</code></h2>
|
|
520
|
+
<p>some_attr = 1</p>
|
|
521
|
+
////
|
|
522
|
+
|
|
523
|
+
//// tab | With attribute values hidden
|
|
524
|
+
<h2><code>SomeClass</code></h2>
|
|
525
|
+
<p>some_attr</p>
|
|
526
|
+
////
|
|
527
|
+
///
|
|
528
|
+
|
|
436
529
|
[](){#option-show_overloads}
|
|
437
530
|
## `show_overloads`
|
|
438
531
|
|
|
@@ -150,9 +150,11 @@ plugins:
|
|
|
150
150
|
[__all__]: https://docs.python.org/3/tutorial/modules.html#importing-from-a-package
|
|
151
151
|
|
|
152
152
|
[](){#setting-locale}
|
|
153
|
-
####
|
|
153
|
+
#### ~~`locale`~~
|
|
154
154
|
|
|
155
|
-
|
|
155
|
+
**Deprecated.** Use mkdocstrings' own `locale` setting.
|
|
156
|
+
|
|
157
|
+
~~The locale to use when translating template strings.~~
|
|
156
158
|
|
|
157
159
|
[](){#setting-paths}
|
|
158
160
|
#### `paths`
|
|
@@ -240,7 +240,7 @@ def coverage(ctx: Context) -> None:
|
|
|
240
240
|
|
|
241
241
|
|
|
242
242
|
@duty
|
|
243
|
-
def test(ctx: Context, *cli_args: str, match: str = "", snapshot: str = "report") -> None:
|
|
243
|
+
def test(ctx: Context, *cli_args: str, match: str = "", snapshot: str = "report") -> None: # noqa: PT028
|
|
244
244
|
"""Run the test suite.
|
|
245
245
|
|
|
246
246
|
Parameters:
|
|
@@ -37,12 +37,12 @@ classifiers = [
|
|
|
37
37
|
"Typing :: Typed",
|
|
38
38
|
]
|
|
39
39
|
dependencies = [
|
|
40
|
-
"mkdocstrings>=0.
|
|
40
|
+
"mkdocstrings>=0.30",
|
|
41
41
|
"mkdocs-autorefs>=1.4",
|
|
42
|
-
"griffe>=1.
|
|
42
|
+
"griffe>=1.12.1",
|
|
43
43
|
"typing-extensions>=4.0; python_version < '3.11'",
|
|
44
44
|
]
|
|
45
|
-
version = "1.
|
|
45
|
+
version = "1.17.0"
|
|
46
46
|
|
|
47
47
|
[project.urls]
|
|
48
48
|
Homepage = "https://mkdocstrings.github.io/python"
|
|
@@ -112,7 +112,7 @@ ci = [
|
|
|
112
112
|
"pytest-randomly>=3.15",
|
|
113
113
|
"pytest-xdist>=3.6",
|
|
114
114
|
"beautifulsoup4>=4.12.3",
|
|
115
|
-
"inline-snapshot>=0.
|
|
115
|
+
"inline-snapshot>=0.25",
|
|
116
116
|
"mypy>=1.10",
|
|
117
117
|
"types-markdown>=3.6",
|
|
118
118
|
"types-pyyaml>=6.0",
|
|
@@ -186,6 +186,24 @@ class GoogleStyleOptions:
|
|
|
186
186
|
),
|
|
187
187
|
] = True
|
|
188
188
|
|
|
189
|
+
warn_missing_types: Annotated[
|
|
190
|
+
bool,
|
|
191
|
+
_Field(
|
|
192
|
+
group="docstrings",
|
|
193
|
+
parent="docstring_options",
|
|
194
|
+
description="Warn about missing type/annotation for parameters, return values, etc.",
|
|
195
|
+
),
|
|
196
|
+
] = True
|
|
197
|
+
|
|
198
|
+
warnings: Annotated[
|
|
199
|
+
bool,
|
|
200
|
+
_Field(
|
|
201
|
+
group="docstrings",
|
|
202
|
+
parent="docstring_options",
|
|
203
|
+
description="Generally enable/disable warnings when parsing docstrings.",
|
|
204
|
+
),
|
|
205
|
+
] = True
|
|
206
|
+
|
|
189
207
|
|
|
190
208
|
# YORE: EOL 3.9: Replace `**_dataclass_options` with `frozen=True, kw_only=True` within line.
|
|
191
209
|
@dataclass(**_dataclass_options) # type: ignore[call-overload]
|
|
@@ -219,12 +237,57 @@ class NumpyStyleOptions:
|
|
|
219
237
|
),
|
|
220
238
|
] = True
|
|
221
239
|
|
|
240
|
+
warn_missing_types: Annotated[
|
|
241
|
+
bool,
|
|
242
|
+
_Field(
|
|
243
|
+
group="docstrings",
|
|
244
|
+
parent="docstring_options",
|
|
245
|
+
description="Warn about missing type/annotation for parameters, return values, etc.",
|
|
246
|
+
),
|
|
247
|
+
] = True
|
|
248
|
+
|
|
249
|
+
warnings: Annotated[
|
|
250
|
+
bool,
|
|
251
|
+
_Field(
|
|
252
|
+
group="docstrings",
|
|
253
|
+
parent="docstring_options",
|
|
254
|
+
description="Generally enable/disable warnings when parsing docstrings.",
|
|
255
|
+
),
|
|
256
|
+
] = True
|
|
257
|
+
|
|
222
258
|
|
|
223
259
|
# YORE: EOL 3.9: Replace `**_dataclass_options` with `frozen=True, kw_only=True` within line.
|
|
224
260
|
@dataclass(**_dataclass_options) # type: ignore[call-overload]
|
|
225
261
|
class SphinxStyleOptions:
|
|
226
262
|
"""Sphinx style docstring options."""
|
|
227
263
|
|
|
264
|
+
warn_unknown_params: Annotated[
|
|
265
|
+
bool,
|
|
266
|
+
_Field(
|
|
267
|
+
group="docstrings",
|
|
268
|
+
parent="docstring_options",
|
|
269
|
+
description="Warn about documented parameters not appearing in the signature.",
|
|
270
|
+
),
|
|
271
|
+
] = True
|
|
272
|
+
|
|
273
|
+
warn_missing_types: Annotated[
|
|
274
|
+
bool,
|
|
275
|
+
_Field(
|
|
276
|
+
group="docstrings",
|
|
277
|
+
parent="docstring_options",
|
|
278
|
+
description="Warn about missing type/annotation for return values.",
|
|
279
|
+
),
|
|
280
|
+
] = True
|
|
281
|
+
|
|
282
|
+
warnings: Annotated[
|
|
283
|
+
bool,
|
|
284
|
+
_Field(
|
|
285
|
+
group="docstrings",
|
|
286
|
+
parent="docstring_options",
|
|
287
|
+
description="Generally enable/disable warnings when parsing docstrings.",
|
|
288
|
+
),
|
|
289
|
+
] = True
|
|
290
|
+
|
|
228
291
|
|
|
229
292
|
# YORE: EOL 3.9: Replace `**_dataclass_options` with `frozen=True, kw_only=True` within line.
|
|
230
293
|
@dataclass(**_dataclass_options) # type: ignore[call-overload]
|
|
@@ -554,6 +617,14 @@ class PythonInputOptions:
|
|
|
554
617
|
),
|
|
555
618
|
] = False
|
|
556
619
|
|
|
620
|
+
overloads_only: Annotated[
|
|
621
|
+
bool,
|
|
622
|
+
_Field(
|
|
623
|
+
group="signatures",
|
|
624
|
+
description="Whether to hide the implementation signature if the overloads are shown.",
|
|
625
|
+
),
|
|
626
|
+
] = False
|
|
627
|
+
|
|
557
628
|
parameter_headings: Annotated[
|
|
558
629
|
bool,
|
|
559
630
|
_Field(
|
|
@@ -614,6 +685,14 @@ class PythonInputOptions:
|
|
|
614
685
|
),
|
|
615
686
|
] = False
|
|
616
687
|
|
|
688
|
+
show_attribute_values: Annotated[
|
|
689
|
+
bool,
|
|
690
|
+
_Field(
|
|
691
|
+
group="signatures",
|
|
692
|
+
description="Show initial values of attributes in classes.",
|
|
693
|
+
),
|
|
694
|
+
] = True
|
|
695
|
+
|
|
617
696
|
show_bases: Annotated[
|
|
618
697
|
bool,
|
|
619
698
|
_Field(
|
|
@@ -849,6 +928,14 @@ class PythonInputOptions:
|
|
|
849
928
|
),
|
|
850
929
|
] = False
|
|
851
930
|
|
|
931
|
+
skip_local_inventory: Annotated[
|
|
932
|
+
bool,
|
|
933
|
+
_Field(
|
|
934
|
+
group="general",
|
|
935
|
+
description="Whether to prevent objects from being registered in the local objects inventory.",
|
|
936
|
+
),
|
|
937
|
+
] = False
|
|
938
|
+
|
|
852
939
|
signature_crossrefs: Annotated[
|
|
853
940
|
bool,
|
|
854
941
|
_Field(
|
|
@@ -1019,7 +1106,9 @@ class PythonInputConfig:
|
|
|
1019
1106
|
|
|
1020
1107
|
locale: Annotated[
|
|
1021
1108
|
str | None,
|
|
1022
|
-
_Field(
|
|
1109
|
+
_Field(
|
|
1110
|
+
description="Deprecated. Use mkdocstrings' own `locale` setting instead. The locale to use when translating template strings.",
|
|
1111
|
+
),
|
|
1023
1112
|
] = None
|
|
1024
1113
|
|
|
1025
1114
|
@classmethod
|
|
@@ -278,12 +278,13 @@ class PythonHandler(BaseHandler):
|
|
|
278
278
|
|
|
279
279
|
return doc_object
|
|
280
280
|
|
|
281
|
-
def render(self, data: CollectorItem, options: PythonOptions) -> str:
|
|
281
|
+
def render(self, data: CollectorItem, options: PythonOptions, locale: str | None = None) -> str:
|
|
282
282
|
"""Render the collected data.
|
|
283
283
|
|
|
284
284
|
Parameters:
|
|
285
285
|
data: The collected data.
|
|
286
286
|
options: The options to use for rendering.
|
|
287
|
+
locale: The locale to use for rendering (default is "en").
|
|
287
288
|
|
|
288
289
|
Returns:
|
|
289
290
|
The rendered data (HTML).
|
|
@@ -300,7 +301,8 @@ class PythonHandler(BaseHandler):
|
|
|
300
301
|
# than as an item in a dictionary.
|
|
301
302
|
"heading_level": options.heading_level,
|
|
302
303
|
"root": True,
|
|
303
|
-
"
|
|
304
|
+
# YORE: Bump 2: Regex-replace ` or .+` with ` or "en",` within line.
|
|
305
|
+
"locale": locale or self.config.locale,
|
|
304
306
|
},
|
|
305
307
|
)
|
|
306
308
|
|
|
@@ -360,7 +362,7 @@ class PythonHandler(BaseHandler):
|
|
|
360
362
|
return tuple(f"{alias}({parameter})" for alias in aliases)
|
|
361
363
|
return tuple(aliases)
|
|
362
364
|
|
|
363
|
-
def normalize_extension_paths(self, extensions: Sequence) ->
|
|
365
|
+
def normalize_extension_paths(self, extensions: Sequence) -> list[str | dict[str, Any]]:
|
|
364
366
|
"""Resolve extension paths relative to config file.
|
|
365
367
|
|
|
366
368
|
Parameters:
|
|
@@ -369,7 +371,7 @@ class PythonHandler(BaseHandler):
|
|
|
369
371
|
Returns:
|
|
370
372
|
The normalized extensions.
|
|
371
373
|
"""
|
|
372
|
-
normalized = []
|
|
374
|
+
normalized: list[str | dict[str, Any]] = []
|
|
373
375
|
|
|
374
376
|
for ext in extensions:
|
|
375
377
|
if isinstance(ext, dict):
|
|
@@ -401,6 +403,7 @@ def get_handler(
|
|
|
401
403
|
Parameters:
|
|
402
404
|
handler_config: The handler configuration.
|
|
403
405
|
tool_config: The tool (SSG) configuration.
|
|
406
|
+
**kwargs: Additional arguments to pass to the handler.
|
|
404
407
|
|
|
405
408
|
Returns:
|
|
406
409
|
An instance of `PythonHandler`.
|
|
@@ -190,7 +190,7 @@ def do_format_signature(
|
|
|
190
190
|
# To fix this, we replace the CSS class in the first span with `nf`,
|
|
191
191
|
# unless we already found an `nf` span.
|
|
192
192
|
if not re.search(r'<span class="nf">', signature):
|
|
193
|
-
signature = re.sub(r'<span class="[a-z]
|
|
193
|
+
signature = re.sub(r'<span class="[a-z]{1,2}">', '<span class="nf">', signature, count=1)
|
|
194
194
|
|
|
195
195
|
if stash := env.filters["stash_crossref"].stash:
|
|
196
196
|
for key, value in stash.items():
|
|
@@ -208,6 +208,7 @@ def do_format_attribute(
|
|
|
208
208
|
line_length: int,
|
|
209
209
|
*,
|
|
210
210
|
crossrefs: bool = False, # noqa: ARG001
|
|
211
|
+
show_value: bool = True,
|
|
211
212
|
) -> str:
|
|
212
213
|
"""Format an attribute.
|
|
213
214
|
|
|
@@ -235,7 +236,7 @@ def do_format_attribute(
|
|
|
235
236
|
backlink_type="returned-by",
|
|
236
237
|
)
|
|
237
238
|
signature += f": {annotation}"
|
|
238
|
-
if attribute.value:
|
|
239
|
+
if show_value and attribute.value:
|
|
239
240
|
value = template.render(context.parent, expression=attribute.value, signature=True, backlink_type="used-by")
|
|
240
241
|
signature += f" = {value}"
|
|
241
242
|
|
|
@@ -261,7 +262,7 @@ def do_format_attribute(
|
|
|
261
262
|
def do_order_members(
|
|
262
263
|
members: Sequence[Object | Alias],
|
|
263
264
|
order: Order | list[Order],
|
|
264
|
-
members_list: bool | list[str] | None,
|
|
265
|
+
members_list: bool | list[str] | None, # noqa: FBT001
|
|
265
266
|
) -> Sequence[Object | Alias]:
|
|
266
267
|
"""Order members given an ordering method.
|
|
267
268
|
|
|
@@ -522,7 +523,7 @@ def _get_formatter() -> Callable[[str, int], str]:
|
|
|
522
523
|
|
|
523
524
|
def _get_ruff_formatter() -> Callable[[str, int], str] | None:
|
|
524
525
|
try:
|
|
525
|
-
from ruff.__main__ import find_ruff_bin
|
|
526
|
+
from ruff.__main__ import find_ruff_bin # noqa: PLC0415
|
|
526
527
|
except ImportError:
|
|
527
528
|
return None
|
|
528
529
|
|
|
@@ -558,7 +559,7 @@ def _get_ruff_formatter() -> Callable[[str, int], str] | None:
|
|
|
558
559
|
|
|
559
560
|
def _get_black_formatter() -> Callable[[str, int], str] | None:
|
|
560
561
|
try:
|
|
561
|
-
from black import InvalidInput, Mode, format_str
|
|
562
|
+
from black import InvalidInput, Mode, format_str # noqa: PLC0415
|
|
562
563
|
except ModuleNotFoundError:
|
|
563
564
|
return None
|
|
564
565
|
|
|
@@ -638,7 +639,7 @@ def do_as_attributes_section(
|
|
|
638
639
|
name=attribute.name,
|
|
639
640
|
description=_parse_docstring_summary(attribute),
|
|
640
641
|
annotation=attribute.annotation,
|
|
641
|
-
value=attribute.value,
|
|
642
|
+
value=attribute.value,
|
|
642
643
|
)
|
|
643
644
|
for attribute in attributes
|
|
644
645
|
if not check_public or attribute.is_public
|
|
@@ -40,6 +40,7 @@ Context:
|
|
|
40
40
|
id=html_id,
|
|
41
41
|
class="doc doc-heading",
|
|
42
42
|
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-attribute"></code> '|safe if config.show_symbol_type_toc else '') + (config.toc_label if config.toc_label and root else attribute.name),
|
|
43
|
+
skip_inventory=config.skip_local_inventory,
|
|
43
44
|
) %}
|
|
44
45
|
|
|
45
46
|
{% block heading scoped %}
|
|
@@ -55,7 +56,7 @@ Context:
|
|
|
55
56
|
{% else %}
|
|
56
57
|
{%+ filter highlight(language="python", inline=True) %}
|
|
57
58
|
{{ attribute_name }}{% if attribute.annotation and config.show_signature_annotations %}: {{ attribute.annotation }}{% endif %}
|
|
58
|
-
{% if attribute.value %} = {{ attribute.value }}{% endif %}
|
|
59
|
+
{% if config.show_attribute_values and attribute.value %} = {{ attribute.value }}{% endif %}
|
|
59
60
|
{% endfilter %}
|
|
60
61
|
{% endif %}
|
|
61
62
|
{% endblock heading %}
|
|
@@ -79,7 +80,7 @@ Context:
|
|
|
79
80
|
This block renders the signature for the attribute.
|
|
80
81
|
-#}
|
|
81
82
|
{% if config.separate_signature %}
|
|
82
|
-
{% filter format_attribute(attribute, config.line_length, crossrefs=config.signature_crossrefs) %}
|
|
83
|
+
{% filter format_attribute(attribute, config.line_length, crossrefs=config.signature_crossrefs, show_value=config.show_attribute_values) %}
|
|
83
84
|
{{ attribute.name }}
|
|
84
85
|
{% endfilter %}
|
|
85
86
|
{% endif %}
|
|
@@ -93,6 +94,7 @@ Context:
|
|
|
93
94
|
id=html_id,
|
|
94
95
|
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-attribute"></code> '|safe if config.show_symbol_type_toc else '') + (config.toc_label if config.toc_label and root else attribute_name),
|
|
95
96
|
hidden=True,
|
|
97
|
+
skip_inventory=config.skip_local_inventory,
|
|
96
98
|
) %}
|
|
97
99
|
{% endfilter %}
|
|
98
100
|
{% endif %}
|
|
@@ -45,7 +45,7 @@ Context:
|
|
|
45
45
|
) %}
|
|
46
46
|
{% if attributes %}
|
|
47
47
|
{% if config.show_category_heading %}
|
|
48
|
-
{% filter heading(heading_level, id=html_id ~ "-attributes") %}Attributes{% endfilter %}
|
|
48
|
+
{% filter heading(heading_level, id=html_id ~ "-attributes", skip_inventory=config.skip_local_inventory) %}Attributes{% endfilter %}
|
|
49
49
|
{% endif %}
|
|
50
50
|
{% with heading_level = heading_level + extra_level %}
|
|
51
51
|
{% for attribute in attributes|order_members(config.members_order, members_list) %}
|
|
@@ -65,7 +65,7 @@ Context:
|
|
|
65
65
|
) %}
|
|
66
66
|
{% if classes %}
|
|
67
67
|
{% if config.show_category_heading %}
|
|
68
|
-
{% filter heading(heading_level, id=html_id ~ "-classes") %}Classes{% endfilter %}
|
|
68
|
+
{% filter heading(heading_level, id=html_id ~ "-classes", skip_inventory=config.skip_local_inventory) %}Classes{% endfilter %}
|
|
69
69
|
{% endif %}
|
|
70
70
|
{% with heading_level = heading_level + extra_level %}
|
|
71
71
|
{% for class in classes|order_members(config.members_order, members_list) %}
|
|
@@ -85,7 +85,7 @@ Context:
|
|
|
85
85
|
) %}
|
|
86
86
|
{% if functions %}
|
|
87
87
|
{% if config.show_category_heading %}
|
|
88
|
-
{% filter heading(heading_level, id=html_id ~ "-functions") %}Functions{% endfilter %}
|
|
88
|
+
{% filter heading(heading_level, id=html_id ~ "-functions", skip_inventory=config.skip_local_inventory) %}Functions{% endfilter %}
|
|
89
89
|
{% endif %}
|
|
90
90
|
{% with heading_level = heading_level + extra_level %}
|
|
91
91
|
{% for function in functions|order_members(config.members_order, members_list) %}
|
|
@@ -108,7 +108,7 @@ Context:
|
|
|
108
108
|
) %}
|
|
109
109
|
{% if modules %}
|
|
110
110
|
{% if config.show_category_heading %}
|
|
111
|
-
{% filter heading(heading_level, id=html_id ~ "-modules") %}Modules{% endfilter %}
|
|
111
|
+
{% filter heading(heading_level, id=html_id ~ "-modules", skip_inventory=config.skip_local_inventory) %}Modules{% endfilter %}
|
|
112
112
|
{% endif %}
|
|
113
113
|
{% with heading_level = heading_level + extra_level %}
|
|
114
114
|
{% for module in modules|order_members("alphabetical", members_list) %}
|
|
@@ -39,6 +39,7 @@ Context:
|
|
|
39
39
|
id=html_id,
|
|
40
40
|
class="doc doc-heading",
|
|
41
41
|
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-class"></code> '|safe if config.show_symbol_type_toc else '') + (config.toc_label if config.toc_label and root else class.name),
|
|
42
|
+
skip_inventory=config.skip_local_inventory,
|
|
42
43
|
) %}
|
|
43
44
|
|
|
44
45
|
{% block heading scoped %}
|
|
@@ -112,6 +113,7 @@ Context:
|
|
|
112
113
|
id=html_id,
|
|
113
114
|
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-class"></code> '|safe if config.show_symbol_type_toc else '') + (config.toc_label if config.toc_label and root else class.name),
|
|
114
115
|
hidden=True,
|
|
116
|
+
skip_inventory=config.skip_local_inventory,
|
|
115
117
|
) %}
|
|
116
118
|
{% endfilter %}
|
|
117
119
|
{% endif %}
|
|
@@ -43,6 +43,7 @@ Context:
|
|
|
43
43
|
id=html_id ~ "(" ~ parameter.name ~ ")",
|
|
44
44
|
class="doc doc-heading doc-heading-parameter",
|
|
45
45
|
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-parameter"></code> '|safe if config.show_symbol_type_toc else '') + parameter.name,
|
|
46
|
+
skip_inventory=config.skip_local_inventory,
|
|
46
47
|
) %}
|
|
47
48
|
<code>{{ parameter.name }}</code>
|
|
48
49
|
{% endfilter %}
|
|
@@ -92,6 +93,7 @@ Context:
|
|
|
92
93
|
id=html_id ~ "(" ~ parameter.name ~ ")",
|
|
93
94
|
class="doc doc-heading doc-heading-parameter",
|
|
94
95
|
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-parameter"></code> '|safe if config.show_symbol_type_toc else '') + parameter.name,
|
|
96
|
+
skip_inventory=config.skip_local_inventory,
|
|
95
97
|
) %}
|
|
96
98
|
<b><code>{{ parameter.name }}</code></b>
|
|
97
99
|
{% endfilter %}
|
|
@@ -139,6 +141,7 @@ Context:
|
|
|
139
141
|
id=html_id ~ "(" ~ parameter.name ~ ")",
|
|
140
142
|
class="doc doc-heading doc-heading-parameter",
|
|
141
143
|
toc_label=('<code class="doc-symbol doc-symbol-toc doc-symbol-parameter"></code> '|safe if config.show_symbol_type_toc else '') + parameter.name,
|
|
144
|
+
skip_inventory=config.skip_local_inventory,
|
|
142
145
|
) %}
|
|
143
146
|
<code>{{ parameter.name }}</code>
|
|
144
147
|
{% endfilter %}
|
|
@@ -46,6 +46,7 @@ Context:
|
|
|
46
46
|
id=html_id,
|
|
47
47
|
class="doc doc-heading",
|
|
48
48
|
toc_label=(('<code class="doc-symbol doc-symbol-toc doc-symbol-' + symbol_type + '"></code> ')|safe if config.show_symbol_type_toc else '') + (config.toc_label if config.toc_label and root else function.name),
|
|
49
|
+
skip_inventory=config.skip_local_inventory,
|
|
49
50
|
) %}
|
|
50
51
|
|
|
51
52
|
{% block heading scoped %}
|
|
@@ -94,7 +95,7 @@ Context:
|
|
|
94
95
|
{% endfor %}
|
|
95
96
|
</div>
|
|
96
97
|
{% endif %}
|
|
97
|
-
{% if config.separate_signature %}
|
|
98
|
+
{% if config.separate_signature and not (config.show_overloads and function.overloads and config.overloads_only) %}
|
|
98
99
|
{% filter format_signature(function, config.line_length, crossrefs=config.signature_crossrefs) %}
|
|
99
100
|
{{ function.name }}
|
|
100
101
|
{% endfilter %}
|
|
@@ -110,6 +111,7 @@ Context:
|
|
|
110
111
|
id=html_id,
|
|
111
112
|
toc_label=(('<code class="doc-symbol doc-symbol-toc doc-symbol-' + symbol_type + '"></code> ')|safe if config.show_symbol_type_toc else '') + (config.toc_label if config.toc_label and root else function.name),
|
|
112
113
|
hidden=True,
|
|
114
|
+
skip_inventory=config.skip_local_inventory,
|
|
113
115
|
) %}
|
|
114
116
|
{% endfilter %}
|
|
115
117
|
{% endif %}
|