mkdocstrings-python 1.17.0__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.17.0 → mkdocstrings_python-1.18.0}/CHANGELOG.md +12 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/PKG-INFO +2 -2
- mkdocstrings_python-1.18.0/docs/snippets/package/generics.py +49 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/configuration/docstrings.md +113 -4
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/configuration/headings.md +128 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/configuration/members.md +1 -1
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/configuration/signatures.md +55 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/customization.md +56 -2
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/duties.py +3 -3
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/mkdocs.yml +2 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/pyproject.toml +2 -2
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/__init__.py +4 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/config.py +50 -3
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/handler.py +6 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/rendering.py +99 -3
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/children.html.jinja +25 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/class.html.jinja +32 -22
- 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.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html.jinja +6 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html.jinja +51 -1
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/function.html.jinja +4 -2
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html.jinja +11 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html.jinja +12 -1
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html.jinja +12 -1
- 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.17.0 → 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.17.0 → 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.17.0 → mkdocstrings_python-1.18.0}/tests/test_end_to_end.py +1 -1
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/CODE_OF_CONDUCT.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/CONTRIBUTING.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/LICENSE +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/README.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/black.toml +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/coverage.ini +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/git-changelog.toml +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/mypy.ini +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/pytest.ini +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/ruff.toml +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/vscode/launch.json +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/vscode/settings.json +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/config/vscode/tasks.json +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/.glossary.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/.overrides/main.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/.overrides/partials/comments.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/.overrides/partials/path-item.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/changelog.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/code_of_conduct.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/contributing.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/credits.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/css/insiders.css +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/css/material.css +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/css/mkdocstrings.css +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/index.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/insiders/changelog.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/insiders/goals.yml +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/insiders/index.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/insiders/installation.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/js/feedback.js +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/js/insiders.js +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/license.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/logo.png +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/reference/api.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/snippets/package/__init__.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/snippets/package/modern.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/configuration/general.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/docstrings/google.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/docstrings/numpy.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/docstrings/sphinx.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/extensions.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/docs/usage/index.md +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/scripts/gen_credits.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/scripts/get_version.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/scripts/griffe_extensions.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/scripts/insiders.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/scripts/make +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/scripts/make.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/scripts/mkdocs_hooks.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/__init__.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/_internal/debug.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/config.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/handler.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/py.typed +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/rendering.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/attribute.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/backlinks.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/children.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/class.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/admonition.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/classes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/examples.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/functions.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/modules.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/docstring.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/expression.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/function.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/labels.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/language.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/language.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/en.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/ja.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/languages/zh.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/module.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/module.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/signature.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/classes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/functions.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary/modules.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/_base/summary.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/attribute.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/attribute.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/backlinks.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/children.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/children.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/class.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/class.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/admonition.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/classes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/examples.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/functions.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/modules.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/docstring.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/expression.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/expression.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/function.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/function.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/labels.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/labels.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/language.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/language.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/en.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/module.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/module.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/signature.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/signature.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/classes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/functions.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary/modules.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/material/summary.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/language.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/_base/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/attributes.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/other_parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/parameters.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/raises.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/receives.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/returns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/warns.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/docstring/yields.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/language.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/en.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/ja.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/languages/zh.html.jinja +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/src/mkdocstrings_handlers/python/templates/readthedocs/style.css +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/__init__.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/conftest.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/helpers.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/headings/heading=,separate_signature=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/headings/heading=,separate_signature=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/headings/heading=Some heading,separate_signature=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/headings/heading=Some heading,separate_signature=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=('method1',),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=(),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=False,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('!module_attribute',),inherited_members=True,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=('method1',),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=(),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=False,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=('module_attribute',),inherited_members=True,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=('method1',),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=(),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=(),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=(),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=(),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=(),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=False,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=False,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=False,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=False,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=False,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=True,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=True,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=True,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=True,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=(),inherited_members=True,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=('method1',),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=(),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=(),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=(),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=(),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=(),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=False,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=False,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=False,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=False,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=False,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=True,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=True,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=True,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=True,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=None,inherited_members=True,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=('method1',),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=(),members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=(),members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=(),members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=(),members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=(),members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=False,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=False,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=False,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=False,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=False,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=True,members=('module_attribute',).html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=True,members=().html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=True,members=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=True,members=None.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/members/filters=public,inherited_members=True,members=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=False,show_overloads=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=False,separate_signature=True,show_overloads=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=False,show_overloads=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/overloads/overloads_only=True,separate_signature=True,show_overloads=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=False,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=False,signature_crossrefs=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=False.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/snapshots/signatures/separate_signature=True,show_signature_annotations=True,signature_crossrefs=True.html +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/test_api.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/test_handler.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/test_rendering.py +0 -0
- {mkdocstrings_python-1.17.0 → mkdocstrings_python-1.18.0}/tests/test_themes.py +0 -0
|
@@ -5,6 +5,18 @@ 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
|
+
|
|
8
20
|
## [1.17.0](https://github.com/mkdocstrings/python/releases/tag/1.17.0) - 2025-08-14
|
|
9
21
|
|
|
10
22
|
<small>[Compare with 1.16.12](https://github.com/mkdocstrings/python/compare/1.16.12...1.17.0)</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
|
|
@@ -32,7 +32,7 @@ Project-URL: Funding, https://github.com/sponsors/pawamoy
|
|
|
32
32
|
Requires-Python: >=3.9
|
|
33
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.17.0 → 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.17.0 → mkdocstrings_python-1.18.0}/docs/usage/configuration/headings.md
RENAMED
|
@@ -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.17.0 → 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.17.0 → mkdocstrings_python-1.18.0}/docs/usage/configuration/signatures.md
RENAMED
|
@@ -430,6 +430,61 @@ function(param1, param2=None)
|
|
|
430
430
|
////
|
|
431
431
|
///
|
|
432
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
|
+
|
|
433
488
|
[](){#option-separate_signature}
|
|
434
489
|
## `separate_signature`
|
|
435
490
|
|
|
@@ -34,9 +34,10 @@ The following CSS classes are used in the generated HTML:
|
|
|
34
34
|
- `doc-class`: on `div`s containing a class
|
|
35
35
|
- `doc-function`: on `div`s containing a function
|
|
36
36
|
- `doc-module`: on `div`s containing a module
|
|
37
|
+
- `doc-type_alias`: on `div`s containing a type alias
|
|
37
38
|
- `doc-heading`: on objects headings
|
|
38
39
|
- `doc-object-name`: on `span`s wrapping objects names/paths in the heading
|
|
39
|
-
- `doc-KIND-name`: as above, specific to the kind of object (module, class, function, attribute)
|
|
40
|
+
- `doc-KIND-name`: as above, specific to the kind of object (module, class, function, attribute, type_alias)
|
|
40
41
|
- `doc-contents`: on `div`s wrapping the docstring then the children (if any)
|
|
41
42
|
- `first`: same, but only on the root object's contents `div`
|
|
42
43
|
- `doc-labels`: on `span`s wrapping the object's labels
|
|
@@ -48,7 +49,7 @@ The following CSS classes are used in the generated HTML:
|
|
|
48
49
|
- `doc-symbol`: on `code` tags of symbol types
|
|
49
50
|
- `doc-symbol-heading`: on symbol types in headings
|
|
50
51
|
- `doc-symbol-toc`: on symbol types in the ToC
|
|
51
|
-
- `doc-symbol-KIND`: specific to the kind of object (`module`, `class`, `function`, `method`, `attribute`)
|
|
52
|
+
- `doc-symbol-KIND`: specific to the kind of object (`module`, `class`, `function`, `method`, `attribute`, `type_alias`)
|
|
52
53
|
|
|
53
54
|
/// admonition | Example with colorful labels
|
|
54
55
|
type: example
|
|
@@ -90,33 +91,41 @@ by overriding the values of our CSS variables, for example:
|
|
|
90
91
|
```css title="docs/css/mkdocstrings.css"
|
|
91
92
|
[data-md-color-scheme="default"] {
|
|
92
93
|
--doc-symbol-parameter-fg-color: #df50af;
|
|
94
|
+
--doc-symbol-type_parameter-fg-color: #df50af;
|
|
93
95
|
--doc-symbol-attribute-fg-color: #0079ff;
|
|
94
96
|
--doc-symbol-function-fg-color: #00dfa2;
|
|
95
97
|
--doc-symbol-method-fg-color: #00dfa2;
|
|
96
98
|
--doc-symbol-class-fg-color: #d1b619;
|
|
99
|
+
--doc-symbol-type_alias-fg-color: #d1b619;
|
|
97
100
|
--doc-symbol-module-fg-color: #ff0060;
|
|
98
101
|
|
|
99
102
|
--doc-symbol-parameter-bg-color: #df50af1a;
|
|
103
|
+
--doc-symbol-type_parameter-bg-color: #df50af1a;
|
|
100
104
|
--doc-symbol-attribute-bg-color: #0079ff1a;
|
|
101
105
|
--doc-symbol-function-bg-color: #00dfa21a;
|
|
102
106
|
--doc-symbol-method-bg-color: #00dfa21a;
|
|
103
107
|
--doc-symbol-class-bg-color: #d1b6191a;
|
|
108
|
+
--doc-symbol-type_alias-bg-color: #d1b6191a;
|
|
104
109
|
--doc-symbol-module-bg-color: #ff00601a;
|
|
105
110
|
}
|
|
106
111
|
|
|
107
112
|
[data-md-color-scheme="slate"] {
|
|
108
113
|
--doc-symbol-parameter-fg-color: #ffa8cc;
|
|
114
|
+
--doc-symbol-type_parameter-fg-color: #ffa8cc;
|
|
109
115
|
--doc-symbol-attribute-fg-color: #963fb8;
|
|
110
116
|
--doc-symbol-function-fg-color: #6d67e4;
|
|
111
117
|
--doc-symbol-method-fg-color: #6d67e4;
|
|
112
118
|
--doc-symbol-class-fg-color: #46c2cb;
|
|
119
|
+
--doc-symbol-type_alias-fg-color: #46c2cb;
|
|
113
120
|
--doc-symbol-module-fg-color: #f2f7a1;
|
|
114
121
|
|
|
115
122
|
--doc-symbol-parameter-bg-color: #ffa8cc1a;
|
|
123
|
+
--doc-symbol-type_parameter-bg-color: #ffa8cc1a;
|
|
116
124
|
--doc-symbol-attribute-bg-color: #963fb81a;
|
|
117
125
|
--doc-symbol-function-bg-color: #6d67e41a;
|
|
118
126
|
--doc-symbol-method-bg-color: #6d67e41a;
|
|
119
127
|
--doc-symbol-class-bg-color: #46c2cb1a;
|
|
128
|
+
--doc-symbol-type_alias-bg-color: #46c2cb1a;
|
|
120
129
|
--doc-symbol-module-bg-color: #f2f7a11a;
|
|
121
130
|
}
|
|
122
131
|
```
|
|
@@ -129,17 +138,21 @@ otherwise just override the variables at root level:
|
|
|
129
138
|
```css title="docs/css/mkdocstrings.css"
|
|
130
139
|
:root {
|
|
131
140
|
--doc-symbol-parameter-fg-color: #df50af;
|
|
141
|
+
--doc-symbol-type_parameter-fg-color: #df50af;
|
|
132
142
|
--doc-symbol-attribute-fg-color: #0079ff;
|
|
133
143
|
--doc-symbol-function-fg-color: #00dfa2;
|
|
134
144
|
--doc-symbol-method-fg-color: #00dfa2;
|
|
135
145
|
--doc-symbol-class-fg-color: #d1b619;
|
|
146
|
+
--doc-symbol-type_alias-fg-color: #d1b619;
|
|
136
147
|
--doc-symbol-module-fg-color: #ff0060;
|
|
137
148
|
|
|
138
149
|
--doc-symbol-parameter-bg-color: #df50af1a;
|
|
150
|
+
--doc-symbol-type_parameter-bg-color: #df50af1a;
|
|
139
151
|
--doc-symbol-attribute-bg-color: #0079ff1a;
|
|
140
152
|
--doc-symbol-function-bg-color: #00dfa21a;
|
|
141
153
|
--doc-symbol-method-bg-color: #00dfa21a;
|
|
142
154
|
--doc-symbol-class-bg-color: #d1b6191a;
|
|
155
|
+
--doc-symbol-type_alias-bg-color: #d1b6191a;
|
|
143
156
|
--doc-symbol-module-bg-color: #ff00601a;
|
|
144
157
|
}
|
|
145
158
|
```
|
|
@@ -151,33 +164,41 @@ otherwise just override the variables at root level:
|
|
|
151
164
|
<style>
|
|
152
165
|
[data-md-color-scheme="default"] #preview-symbol-colors {
|
|
153
166
|
--doc-symbol-parameter-fg-color: #df50af;
|
|
167
|
+
--doc-symbol-type_parameter-fg-color: #df50af;
|
|
154
168
|
--doc-symbol-attribute-fg-color: #0079ff;
|
|
155
169
|
--doc-symbol-function-fg-color: #00dfa2;
|
|
156
170
|
--doc-symbol-method-fg-color: #00dfa2;
|
|
157
171
|
--doc-symbol-class-fg-color: #d1b619;
|
|
172
|
+
--doc-symbol-type_alias-fg-color: #d1b619;
|
|
158
173
|
--doc-symbol-module-fg-color: #ff0060;
|
|
159
174
|
|
|
160
175
|
--doc-symbol-parameter-bg-color: #df50af1a;
|
|
176
|
+
--doc-symbol-type_parameter-bg-color: #df50af1a;
|
|
161
177
|
--doc-symbol-attribute-bg-color: #0079ff1a;
|
|
162
178
|
--doc-symbol-function-bg-color: #00dfa21a;
|
|
163
179
|
--doc-symbol-method-bg-color: #00dfa21a;
|
|
164
180
|
--doc-symbol-class-bg-color: #d1b6191a;
|
|
181
|
+
--doc-symbol-type_alias-bg-color: #d1b6191a;
|
|
165
182
|
--doc-symbol-module-bg-color: #ff00601a;
|
|
166
183
|
}
|
|
167
184
|
|
|
168
185
|
[data-md-color-scheme="slate"] #preview-symbol-colors {
|
|
169
186
|
--doc-symbol-parameter-fg-color: #ffa8cc;
|
|
187
|
+
--doc-symbol-type_parameter-fg-color: #ffa8cc;
|
|
170
188
|
--doc-symbol-attribute-fg-color: #963fb8;
|
|
171
189
|
--doc-symbol-function-fg-color: #6d67e4;
|
|
172
190
|
--doc-symbol-method-fg-color: #6d67e4;
|
|
173
191
|
--doc-symbol-class-fg-color: #46c2cb;
|
|
192
|
+
--doc-symbol-type_alias-fg-color: #46c2cb;
|
|
174
193
|
--doc-symbol-module-fg-color: #f2f7a1;
|
|
175
194
|
|
|
176
195
|
--doc-symbol-parameter-bg-color: #ffa8cc1a;
|
|
196
|
+
--doc-symbol-type_parameter-bg-color: #ffa8cc1a;
|
|
177
197
|
--doc-symbol-attribute-bg-color: #963fb81a;
|
|
178
198
|
--doc-symbol-function-bg-color: #6d67e41a;
|
|
179
199
|
--doc-symbol-method-bg-color: #6d67e41a;
|
|
180
200
|
--doc-symbol-class-bg-color: #46c2cb1a;
|
|
201
|
+
--doc-symbol-type_alias-bg-color: #46c2cb1a;
|
|
181
202
|
--doc-symbol-module-bg-color: #f2f7a11a;
|
|
182
203
|
}
|
|
183
204
|
</style>
|
|
@@ -204,6 +225,10 @@ For example, to use single letters instead of truncated types:
|
|
|
204
225
|
content: "P";
|
|
205
226
|
}
|
|
206
227
|
|
|
228
|
+
.doc-symbol-type_parameter::after {
|
|
229
|
+
content: "P";
|
|
230
|
+
}
|
|
231
|
+
|
|
207
232
|
.doc-symbol-attribute::after {
|
|
208
233
|
content: "A";
|
|
209
234
|
}
|
|
@@ -220,6 +245,10 @@ For example, to use single letters instead of truncated types:
|
|
|
220
245
|
content: "C";
|
|
221
246
|
}
|
|
222
247
|
|
|
248
|
+
.doc-symbol-type_alias::after {
|
|
249
|
+
content: "T";
|
|
250
|
+
}
|
|
251
|
+
|
|
223
252
|
.doc-symbol-module::after {
|
|
224
253
|
content: "M";
|
|
225
254
|
}
|
|
@@ -234,6 +263,10 @@ For example, to use single letters instead of truncated types:
|
|
|
234
263
|
content: "P";
|
|
235
264
|
}
|
|
236
265
|
|
|
266
|
+
#preview-symbol-names .doc-symbol-type_parameter::after {
|
|
267
|
+
content: "P";
|
|
268
|
+
}
|
|
269
|
+
|
|
237
270
|
#preview-symbol-names .doc-symbol-attribute::after {
|
|
238
271
|
content: "A";
|
|
239
272
|
}
|
|
@@ -250,16 +283,22 @@ For example, to use single letters instead of truncated types:
|
|
|
250
283
|
content: "C";
|
|
251
284
|
}
|
|
252
285
|
|
|
286
|
+
#preview-symbol-names .doc-symbol-type_alias::after {
|
|
287
|
+
content: "T";
|
|
288
|
+
}
|
|
289
|
+
|
|
253
290
|
#preview-symbol-names .doc-symbol-module::after {
|
|
254
291
|
content: "M";
|
|
255
292
|
}
|
|
256
293
|
</style>
|
|
257
294
|
<ul>
|
|
258
295
|
<li>Parameter: <code class="doc-symbol doc-symbol-parameter"></code></li>
|
|
296
|
+
<li>Type Parameter: <code class="doc-symbol doc-symbol-type_parameter"></code></li>
|
|
259
297
|
<li>Attribute: <code class="doc-symbol doc-symbol-attribute"></code></li>
|
|
260
298
|
<li>Function: <code class="doc-symbol doc-symbol-function"></code></li>
|
|
261
299
|
<li>Method: <code class="doc-symbol doc-symbol-method"></code></li>
|
|
262
300
|
<li>Class: <code class="doc-symbol doc-symbol-class"></code></li>
|
|
301
|
+
<li>Type Alias: <code class="doc-symbol doc-symbol-type_alias"></code></li>
|
|
263
302
|
<li>Module: <code class="doc-symbol doc-symbol-module"></code></li>
|
|
264
303
|
</ul>
|
|
265
304
|
</div>
|
|
@@ -324,6 +363,19 @@ Available context:
|
|
|
324
363
|
- `config`: The handler configuration (dictionary).
|
|
325
364
|
- `module`: The [Module][griffe.Module] instance.
|
|
326
365
|
|
|
366
|
+
#### `type_alias.html`
|
|
367
|
+
|
|
368
|
+
- `heading`: The class heading.
|
|
369
|
+
- `labels`: The class labels.
|
|
370
|
+
- `signature`: The class signature.
|
|
371
|
+
- `contents`: The class contents: bases, docstring, source and children blocks.
|
|
372
|
+
- `docstring`: The class docstring.
|
|
373
|
+
|
|
374
|
+
Available context:
|
|
375
|
+
|
|
376
|
+
- `config`: The handler configuration (dictionary).
|
|
377
|
+
- `type_alias`: The [TypeAlias][griffe.TypeAlias] instance.
|
|
378
|
+
|
|
327
379
|
#### `class.html`
|
|
328
380
|
|
|
329
381
|
- `heading`: The class heading.
|
|
@@ -379,6 +431,8 @@ In `docstring/attributes.html`,
|
|
|
379
431
|
`docstring/raises.html`,
|
|
380
432
|
`docstring/receives.html`,
|
|
381
433
|
`docstring/returns.html`,
|
|
434
|
+
`docstring/type_aliases.html`,
|
|
435
|
+
`docstring/type_parameters.html`,
|
|
382
436
|
`docstring/warns.html`,
|
|
383
437
|
and `docstring/yields.html`:
|
|
384
438
|
|
|
@@ -93,7 +93,7 @@ def check_quality(ctx: Context) -> None:
|
|
|
93
93
|
)
|
|
94
94
|
|
|
95
95
|
|
|
96
|
-
@duty
|
|
96
|
+
@duty(skip_if=sys.version_info < (3, 13), skip_reason=pyprefix("Skipped: docs require modern generics syntax"))
|
|
97
97
|
def check_docs(ctx: Context) -> None:
|
|
98
98
|
"""Check if the documentation builds correctly."""
|
|
99
99
|
Path("htmlcov").mkdir(parents=True, exist_ok=True)
|
|
@@ -128,7 +128,7 @@ def check_api(ctx: Context, *cli_args: str) -> None:
|
|
|
128
128
|
)
|
|
129
129
|
|
|
130
130
|
|
|
131
|
-
@duty
|
|
131
|
+
@duty(skip_if=sys.version_info < (3, 13), skip_reason=pyprefix("Skipped: docs require modern generics syntax"))
|
|
132
132
|
def docs(ctx: Context, *cli_args: str, host: str = "127.0.0.1", port: int = 8000) -> None:
|
|
133
133
|
"""Serve the documentation (localhost:8000).
|
|
134
134
|
|
|
@@ -144,7 +144,7 @@ def docs(ctx: Context, *cli_args: str, host: str = "127.0.0.1", port: int = 8000
|
|
|
144
144
|
)
|
|
145
145
|
|
|
146
146
|
|
|
147
|
-
@duty
|
|
147
|
+
@duty(skip_if=sys.version_info < (3, 13), skip_reason=pyprefix("Skipped: docs require modern generics syntax"))
|
|
148
148
|
def docs_deploy(ctx: Context, *, force: bool = False) -> None:
|
|
149
149
|
"""Deploy the documentation to GitHub pages.
|
|
150
150
|
|