Sphinx 8.1.2__tar.gz → 8.2.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.
Potentially problematic release.
This version of Sphinx might be problematic. Click here for more details.
- sphinx-8.2.0/AUTHORS.rst +128 -0
- sphinx-8.2.0/CHANGES.rst +167 -0
- sphinx-8.2.0/LICENSE.rst +31 -0
- sphinx-8.2.0/PKG-INFO +164 -0
- sphinx-8.2.0/doc/_static/diagrams/sphinx_build_phases.dot +18 -0
- sphinx-8.2.0/doc/_static/translation.svg +42 -0
- sphinx-8.2.0/doc/_themes/sphinx13/static/sphinx13.css +787 -0
- sphinx-8.2.0/doc/changes/8.1.rst +205 -0
- sphinx-8.2.0/doc/changes/index.rst +72 -0
- sphinx-8.2.0/doc/conf.py +366 -0
- sphinx-8.2.0/doc/development/html_themes/index.rst +522 -0
- sphinx-8.2.0/doc/development/tutorials/examples/autodoc_intenum.py +63 -0
- sphinx-8.2.0/doc/development/tutorials/examples/todo.py +142 -0
- sphinx-8.2.0/doc/development/tutorials/extending_build.rst +379 -0
- sphinx-8.2.0/doc/development/tutorials/extending_syntax.rst +223 -0
- sphinx-8.2.0/doc/extdev/appapi.rst +196 -0
- sphinx-8.2.0/doc/extdev/deprecated.rst +1945 -0
- sphinx-8.2.0/doc/extdev/envapi.rst +106 -0
- sphinx-8.2.0/doc/extdev/i18n.rst +97 -0
- sphinx-8.2.0/doc/extdev/index.rst +244 -0
- sphinx-8.2.0/doc/internals/contributing.rst +354 -0
- sphinx-8.2.0/doc/man/sphinx-apidoc.rst +178 -0
- sphinx-8.2.0/doc/man/sphinx-build.rst +406 -0
- sphinx-8.2.0/doc/tutorial/deploying.rst +278 -0
- sphinx-8.2.0/doc/tutorial/describing-code.rst +276 -0
- sphinx-8.2.0/doc/usage/configuration.rst +4260 -0
- sphinx-8.2.0/doc/usage/domains/index.rst +213 -0
- sphinx-8.2.0/doc/usage/domains/python.rst +874 -0
- sphinx-8.2.0/doc/usage/domains/standard.rst +135 -0
- sphinx-8.2.0/doc/usage/extensions/apidoc.rst +172 -0
- sphinx-8.2.0/doc/usage/extensions/autodoc.rst +1440 -0
- sphinx-8.2.0/doc/usage/extensions/autosummary.rst +414 -0
- sphinx-8.2.0/doc/usage/extensions/coverage.rst +162 -0
- sphinx-8.2.0/doc/usage/extensions/doctest.rst +454 -0
- sphinx-8.2.0/doc/usage/extensions/example_google.py +311 -0
- sphinx-8.2.0/doc/usage/extensions/example_numpy.py +351 -0
- sphinx-8.2.0/doc/usage/extensions/extlinks.rst +75 -0
- sphinx-8.2.0/doc/usage/extensions/graphviz.rst +248 -0
- sphinx-8.2.0/doc/usage/extensions/imgconverter.rst +55 -0
- sphinx-8.2.0/doc/usage/extensions/index.rst +85 -0
- sphinx-8.2.0/doc/usage/extensions/inheritance.rst +203 -0
- sphinx-8.2.0/doc/usage/extensions/intersphinx.rst +267 -0
- sphinx-8.2.0/doc/usage/extensions/linkcode.rst +74 -0
- sphinx-8.2.0/doc/usage/extensions/math.rst +351 -0
- sphinx-8.2.0/doc/usage/extensions/napoleon.rst +645 -0
- sphinx-8.2.0/doc/usage/extensions/todo.rst +70 -0
- sphinx-8.2.0/doc/usage/extensions/viewcode.rst +111 -0
- sphinx-8.2.0/doc/usage/installation.rst +268 -0
- sphinx-8.2.0/doc/usage/referencing.rst +303 -0
- sphinx-8.2.0/doc/usage/restructuredtext/directives.rst +1721 -0
- sphinx-8.2.0/doc/usage/restructuredtext/field-lists.rst +91 -0
- sphinx-8.2.0/pyproject.toml +423 -0
- sphinx-8.2.0/sphinx/__init__.py +59 -0
- sphinx-8.2.0/sphinx/__main__.py +9 -0
- sphinx-8.2.0/sphinx/_cli/__init__.py +313 -0
- sphinx-8.2.0/sphinx/_cli/util/colour.py +127 -0
- sphinx-8.2.0/sphinx/_cli/util/errors.py +249 -0
- sphinx-8.2.0/sphinx/addnodes.py +624 -0
- sphinx-8.2.0/sphinx/application.py +1855 -0
- sphinx-8.2.0/sphinx/builders/__init__.py +893 -0
- sphinx-8.2.0/sphinx/builders/_epub_base.py +801 -0
- sphinx-8.2.0/sphinx/builders/changes.py +186 -0
- sphinx-8.2.0/sphinx/builders/dirhtml.py +50 -0
- sphinx-8.2.0/sphinx/builders/epub3.py +360 -0
- sphinx-8.2.0/sphinx/builders/gettext.py +361 -0
- sphinx-8.2.0/sphinx/builders/html/__init__.py +1563 -0
- sphinx-8.2.0/sphinx/builders/html/_assets.py +189 -0
- sphinx-8.2.0/sphinx/builders/html/_build_info.py +79 -0
- sphinx-8.2.0/sphinx/builders/latex/__init__.py +652 -0
- sphinx-8.2.0/sphinx/builders/latex/constants.py +218 -0
- sphinx-8.2.0/sphinx/builders/latex/nodes.py +44 -0
- sphinx-8.2.0/sphinx/builders/latex/theming.py +136 -0
- sphinx-8.2.0/sphinx/builders/latex/transforms.py +661 -0
- sphinx-8.2.0/sphinx/builders/linkcheck.py +812 -0
- sphinx-8.2.0/sphinx/builders/manpage.py +146 -0
- sphinx-8.2.0/sphinx/builders/singlehtml.py +223 -0
- sphinx-8.2.0/sphinx/builders/texinfo.py +276 -0
- sphinx-8.2.0/sphinx/builders/text.py +94 -0
- sphinx-8.2.0/sphinx/builders/xml.py +118 -0
- sphinx-8.2.0/sphinx/cmd/build.py +497 -0
- sphinx-8.2.0/sphinx/cmd/make_mode.py +223 -0
- sphinx-8.2.0/sphinx/cmd/quickstart.py +816 -0
- sphinx-8.2.0/sphinx/config.py +905 -0
- sphinx-8.2.0/sphinx/directives/__init__.py +382 -0
- sphinx-8.2.0/sphinx/directives/admonitions.py +107 -0
- sphinx-8.2.0/sphinx/directives/code.py +514 -0
- sphinx-8.2.0/sphinx/directives/other.py +442 -0
- sphinx-8.2.0/sphinx/directives/patches.py +238 -0
- sphinx-8.2.0/sphinx/domains/__init__.py +331 -0
- sphinx-8.2.0/sphinx/domains/_domains_container.py +286 -0
- sphinx-8.2.0/sphinx/domains/_index.py +107 -0
- sphinx-8.2.0/sphinx/domains/c/__init__.py +970 -0
- sphinx-8.2.0/sphinx/domains/c/_ast.py +1968 -0
- sphinx-8.2.0/sphinx/domains/c/_ids.py +123 -0
- sphinx-8.2.0/sphinx/domains/c/_parser.py +1122 -0
- sphinx-8.2.0/sphinx/domains/c/_symbol.py +726 -0
- sphinx-8.2.0/sphinx/domains/changeset.py +181 -0
- sphinx-8.2.0/sphinx/domains/citation.py +189 -0
- sphinx-8.2.0/sphinx/domains/cpp/__init__.py +1333 -0
- sphinx-8.2.0/sphinx/domains/cpp/_ast.py +4748 -0
- sphinx-8.2.0/sphinx/domains/cpp/_ids.py +605 -0
- sphinx-8.2.0/sphinx/domains/cpp/_parser.py +2276 -0
- sphinx-8.2.0/sphinx/domains/cpp/_symbol.py +1298 -0
- sphinx-8.2.0/sphinx/domains/index.py +130 -0
- sphinx-8.2.0/sphinx/domains/javascript.py +591 -0
- sphinx-8.2.0/sphinx/domains/math.py +168 -0
- sphinx-8.2.0/sphinx/domains/python/__init__.py +1138 -0
- sphinx-8.2.0/sphinx/domains/python/_annotations.py +602 -0
- sphinx-8.2.0/sphinx/domains/python/_object.py +514 -0
- sphinx-8.2.0/sphinx/domains/rst.py +349 -0
- sphinx-8.2.0/sphinx/domains/std/__init__.py +1472 -0
- sphinx-8.2.0/sphinx/environment/__init__.py +1124 -0
- sphinx-8.2.0/sphinx/environment/adapters/asset.py +22 -0
- sphinx-8.2.0/sphinx/environment/adapters/indexentries.py +268 -0
- sphinx-8.2.0/sphinx/environment/adapters/toctree.py +588 -0
- sphinx-8.2.0/sphinx/environment/collectors/__init__.py +102 -0
- sphinx-8.2.0/sphinx/environment/collectors/asset.py +183 -0
- sphinx-8.2.0/sphinx/environment/collectors/dependencies.py +60 -0
- sphinx-8.2.0/sphinx/environment/collectors/metadata.py +78 -0
- sphinx-8.2.0/sphinx/environment/collectors/title.py +69 -0
- sphinx-8.2.0/sphinx/environment/collectors/toctree.py +401 -0
- sphinx-8.2.0/sphinx/errors.py +139 -0
- sphinx-8.2.0/sphinx/events.py +436 -0
- sphinx-8.2.0/sphinx/ext/apidoc/__init__.py +66 -0
- sphinx-8.2.0/sphinx/ext/apidoc/__main__.py +9 -0
- sphinx-8.2.0/sphinx/ext/apidoc/_cli.py +356 -0
- sphinx-8.2.0/sphinx/ext/apidoc/_extension.py +262 -0
- sphinx-8.2.0/sphinx/ext/apidoc/_generate.py +356 -0
- sphinx-8.2.0/sphinx/ext/apidoc/_shared.py +99 -0
- sphinx-8.2.0/sphinx/ext/autodoc/__init__.py +3224 -0
- sphinx-8.2.0/sphinx/ext/autodoc/directive.py +187 -0
- sphinx-8.2.0/sphinx/ext/autodoc/importer.py +523 -0
- sphinx-8.2.0/sphinx/ext/autodoc/mock.py +218 -0
- sphinx-8.2.0/sphinx/ext/autodoc/preserve_defaults.py +208 -0
- sphinx-8.2.0/sphinx/ext/autodoc/type_comment.py +168 -0
- sphinx-8.2.0/sphinx/ext/autodoc/typehints.py +243 -0
- sphinx-8.2.0/sphinx/ext/autosectionlabel.py +86 -0
- sphinx-8.2.0/sphinx/ext/autosummary/__init__.py +1006 -0
- sphinx-8.2.0/sphinx/ext/autosummary/generate.py +952 -0
- sphinx-8.2.0/sphinx/ext/coverage.py +557 -0
- sphinx-8.2.0/sphinx/ext/doctest.py +644 -0
- sphinx-8.2.0/sphinx/ext/duration.py +107 -0
- sphinx-8.2.0/sphinx/ext/extlinks.py +139 -0
- sphinx-8.2.0/sphinx/ext/githubpages.py +58 -0
- sphinx-8.2.0/sphinx/ext/graphviz.py +536 -0
- sphinx-8.2.0/sphinx/ext/ifconfig.py +85 -0
- sphinx-8.2.0/sphinx/ext/imgconverter.py +119 -0
- sphinx-8.2.0/sphinx/ext/imgmath.py +439 -0
- sphinx-8.2.0/sphinx/ext/inheritance_diagram.py +568 -0
- sphinx-8.2.0/sphinx/ext/intersphinx/__init__.py +110 -0
- sphinx-8.2.0/sphinx/ext/intersphinx/__main__.py +12 -0
- sphinx-8.2.0/sphinx/ext/intersphinx/_cli.py +51 -0
- sphinx-8.2.0/sphinx/ext/intersphinx/_load.py +432 -0
- sphinx-8.2.0/sphinx/ext/intersphinx/_resolve.py +637 -0
- sphinx-8.2.0/sphinx/ext/intersphinx/_shared.py +148 -0
- sphinx-8.2.0/sphinx/ext/linkcode.py +100 -0
- sphinx-8.2.0/sphinx/ext/mathjax.py +157 -0
- sphinx-8.2.0/sphinx/ext/napoleon/__init__.py +504 -0
- sphinx-8.2.0/sphinx/ext/napoleon/docstring.py +1431 -0
- sphinx-8.2.0/sphinx/ext/todo.py +250 -0
- sphinx-8.2.0/sphinx/ext/viewcode.py +411 -0
- sphinx-8.2.0/sphinx/extension.py +94 -0
- sphinx-8.2.0/sphinx/highlighting.py +237 -0
- sphinx-8.2.0/sphinx/io.py +190 -0
- sphinx-8.2.0/sphinx/jinja2glue.py +253 -0
- sphinx-8.2.0/sphinx/locale/__init__.py +238 -0
- sphinx-8.2.0/sphinx/locale/ar/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ar/LC_MESSAGES/sphinx.po +4220 -0
- sphinx-8.2.0/sphinx/locale/bg/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/bg/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/bn/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/bn/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/ca/LC_MESSAGES/sphinx.js +63 -0
- sphinx-8.2.0/sphinx/locale/ca/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ca/LC_MESSAGES/sphinx.po +4218 -0
- sphinx-8.2.0/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.js +63 -0
- sphinx-8.2.0/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ca@valencia/LC_MESSAGES/sphinx.po +4216 -0
- sphinx-8.2.0/sphinx/locale/cak/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/cak/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/cs/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/cs/LC_MESSAGES/sphinx.po +4218 -0
- sphinx-8.2.0/sphinx/locale/cy/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/cy/LC_MESSAGES/sphinx.po +4218 -0
- sphinx-8.2.0/sphinx/locale/da/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/da/LC_MESSAGES/sphinx.po +4218 -0
- sphinx-8.2.0/sphinx/locale/de/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/de/LC_MESSAGES/sphinx.po +4218 -0
- sphinx-8.2.0/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/el/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/el/LC_MESSAGES/sphinx.po +4217 -0
- sphinx-8.2.0/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/eo/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/eo/LC_MESSAGES/sphinx.po +4216 -0
- sphinx-8.2.0/sphinx/locale/es/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/es/LC_MESSAGES/sphinx.po +4224 -0
- sphinx-8.2.0/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/et/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/et/LC_MESSAGES/sphinx.po +4218 -0
- sphinx-8.2.0/sphinx/locale/eu/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/eu/LC_MESSAGES/sphinx.po +4216 -0
- sphinx-8.2.0/sphinx/locale/fa/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/fa/LC_MESSAGES/sphinx.po +4117 -0
- sphinx-8.2.0/sphinx/locale/fi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/fi/LC_MESSAGES/sphinx.po +4114 -0
- sphinx-8.2.0/sphinx/locale/fr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/fr/LC_MESSAGES/sphinx.po +4142 -0
- sphinx-8.2.0/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +4114 -0
- sphinx-8.2.0/sphinx/locale/gl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/gl/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/he/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/he/LC_MESSAGES/sphinx.po +4115 -0
- sphinx-8.2.0/sphinx/locale/hi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/hi/LC_MESSAGES/sphinx.po +4117 -0
- sphinx-8.2.0/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +4113 -0
- sphinx-8.2.0/sphinx/locale/hr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/hr/LC_MESSAGES/sphinx.po +4115 -0
- sphinx-8.2.0/sphinx/locale/hu/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/hu/LC_MESSAGES/sphinx.po +4119 -0
- sphinx-8.2.0/sphinx/locale/id/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/id/LC_MESSAGES/sphinx.po +4219 -0
- sphinx-8.2.0/sphinx/locale/is/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/is/LC_MESSAGES/sphinx.po +4114 -0
- sphinx-8.2.0/sphinx/locale/it/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/it/LC_MESSAGES/sphinx.po +4222 -0
- sphinx-8.2.0/sphinx/locale/ja/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ja/LC_MESSAGES/sphinx.po +4230 -0
- sphinx-8.2.0/sphinx/locale/ka/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ka/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/ko/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ko/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/lt/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/lt/LC_MESSAGES/sphinx.po +4217 -0
- sphinx-8.2.0/sphinx/locale/lv/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/lv/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/mk/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/mk/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/ne/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ne/LC_MESSAGES/sphinx.po +4216 -0
- sphinx-8.2.0/sphinx/locale/nl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/nl/LC_MESSAGES/sphinx.po +4221 -0
- sphinx-8.2.0/sphinx/locale/pl/LC_MESSAGES/sphinx.js +65 -0
- sphinx-8.2.0/sphinx/locale/pl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/pl/LC_MESSAGES/sphinx.po +4223 -0
- sphinx-8.2.0/sphinx/locale/pt/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/pt/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +4221 -0
- sphinx-8.2.0/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +4217 -0
- sphinx-8.2.0/sphinx/locale/ro/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ro/LC_MESSAGES/sphinx.po +4217 -0
- sphinx-8.2.0/sphinx/locale/ru/LC_MESSAGES/sphinx.js +65 -0
- sphinx-8.2.0/sphinx/locale/ru/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ru/LC_MESSAGES/sphinx.po +4226 -0
- sphinx-8.2.0/sphinx/locale/si/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/si/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/sk/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/sk/LC_MESSAGES/sphinx.po +4219 -0
- sphinx-8.2.0/sphinx/locale/sl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/sl/LC_MESSAGES/sphinx.po +4216 -0
- sphinx-8.2.0/sphinx/locale/sphinx.pot +4236 -0
- sphinx-8.2.0/sphinx/locale/sq/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/sq/LC_MESSAGES/sphinx.po +4215 -0
- sphinx-8.2.0/sphinx/locale/sr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/sr/LC_MESSAGES/sphinx.po +4217 -0
- sphinx-8.2.0/sphinx/locale/sv/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/sv/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/te/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/te/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/tr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/tr/LC_MESSAGES/sphinx.po +4218 -0
- sphinx-8.2.0/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +4217 -0
- sphinx-8.2.0/sphinx/locale/ur/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/ur/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/vi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/vi/LC_MESSAGES/sphinx.po +4214 -0
- sphinx-8.2.0/sphinx/locale/yue/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/yue/LC_MESSAGES/sphinx.po +4213 -0
- sphinx-8.2.0/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +4213 -0
- sphinx-8.2.0/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +4221 -0
- sphinx-8.2.0/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.2.0/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +4213 -0
- sphinx-8.2.0/sphinx/parsers.py +102 -0
- sphinx-8.2.0/sphinx/project.py +128 -0
- sphinx-8.2.0/sphinx/pycode/__init__.py +170 -0
- sphinx-8.2.0/sphinx/pycode/ast.py +206 -0
- sphinx-8.2.0/sphinx/pycode/parser.py +605 -0
- sphinx-8.2.0/sphinx/pygments_styles.py +95 -0
- sphinx-8.2.0/sphinx/registry.py +627 -0
- sphinx-8.2.0/sphinx/roles.py +653 -0
- sphinx-8.2.0/sphinx/search/__init__.py +643 -0
- sphinx-8.2.0/sphinx/search/en.py +218 -0
- sphinx-8.2.0/sphinx/search/fi.py +111 -0
- sphinx-8.2.0/sphinx/search/ja.py +547 -0
- sphinx-8.2.0/sphinx/search/nl.py +125 -0
- sphinx-8.2.0/sphinx/search/zh.py +264 -0
- sphinx-8.2.0/sphinx/testing/fixtures.py +260 -0
- sphinx-8.2.0/sphinx/testing/path.py +192 -0
- sphinx-8.2.0/sphinx/testing/restructuredtext.py +41 -0
- sphinx-8.2.0/sphinx/testing/util.py +291 -0
- sphinx-8.2.0/sphinx/texinputs/make.bat.jinja +50 -0
- sphinx-8.2.0/sphinx/texinputs/sphinx.sty +1196 -0
- sphinx-8.2.0/sphinx/texinputs/sphinxlatexadmonitions.sty +403 -0
- sphinx-8.2.0/sphinx/texinputs/sphinxlatexobjects.sty +384 -0
- sphinx-8.2.0/sphinx/themes/basic/static/searchtools.js +635 -0
- sphinx-8.2.0/sphinx/theming.py +549 -0
- sphinx-8.2.0/sphinx/transforms/__init__.py +527 -0
- sphinx-8.2.0/sphinx/transforms/compact_bullet_list.py +94 -0
- sphinx-8.2.0/sphinx/transforms/i18n.py +696 -0
- sphinx-8.2.0/sphinx/transforms/post_transforms/__init__.py +399 -0
- sphinx-8.2.0/sphinx/transforms/post_transforms/code.py +143 -0
- sphinx-8.2.0/sphinx/transforms/post_transforms/images.py +302 -0
- sphinx-8.2.0/sphinx/transforms/references.py +50 -0
- sphinx-8.2.0/sphinx/util/__init__.py +157 -0
- sphinx-8.2.0/sphinx/util/_files.py +96 -0
- sphinx-8.2.0/sphinx/util/_importer.py +30 -0
- sphinx-8.2.0/sphinx/util/_inventory_file_reader.py +76 -0
- sphinx-8.2.0/sphinx/util/_io.py +33 -0
- sphinx-8.2.0/sphinx/util/_lines.py +29 -0
- sphinx-8.2.0/sphinx/util/_pathlib.py +173 -0
- sphinx-8.2.0/sphinx/util/build_phase.py +15 -0
- sphinx-8.2.0/sphinx/util/cfamily.py +522 -0
- sphinx-8.2.0/sphinx/util/console.py +76 -0
- sphinx-8.2.0/sphinx/util/display.py +99 -0
- sphinx-8.2.0/sphinx/util/docfields.py +510 -0
- sphinx-8.2.0/sphinx/util/docstrings.py +88 -0
- sphinx-8.2.0/sphinx/util/docutils.py +818 -0
- sphinx-8.2.0/sphinx/util/fileutil.py +164 -0
- sphinx-8.2.0/sphinx/util/http_date.py +50 -0
- sphinx-8.2.0/sphinx/util/i18n.py +335 -0
- sphinx-8.2.0/sphinx/util/images.py +151 -0
- sphinx-8.2.0/sphinx/util/inspect.py +1060 -0
- sphinx-8.2.0/sphinx/util/inventory.py +328 -0
- sphinx-8.2.0/sphinx/util/logging.py +642 -0
- sphinx-8.2.0/sphinx/util/matching.py +178 -0
- sphinx-8.2.0/sphinx/util/nodes.py +752 -0
- sphinx-8.2.0/sphinx/util/osutil.py +264 -0
- sphinx-8.2.0/sphinx/util/parallel.py +169 -0
- sphinx-8.2.0/sphinx/util/parsing.py +96 -0
- sphinx-8.2.0/sphinx/util/png.py +47 -0
- sphinx-8.2.0/sphinx/util/requests.py +111 -0
- sphinx-8.2.0/sphinx/util/rst.py +115 -0
- sphinx-8.2.0/sphinx/util/tags.py +115 -0
- sphinx-8.2.0/sphinx/util/template.py +163 -0
- sphinx-8.2.0/sphinx/util/texescape.py +155 -0
- sphinx-8.2.0/sphinx/util/typing.py +632 -0
- sphinx-8.2.0/sphinx/versioning.py +184 -0
- sphinx-8.2.0/sphinx/writers/html.py +61 -0
- sphinx-8.2.0/sphinx/writers/html5.py +1007 -0
- sphinx-8.2.0/sphinx/writers/latex.py +2510 -0
- sphinx-8.2.0/sphinx/writers/manpage.py +471 -0
- sphinx-8.2.0/sphinx/writers/texinfo.py +1592 -0
- sphinx-8.2.0/sphinx/writers/text.py +1347 -0
- sphinx-8.2.0/sphinx/writers/xml.py +56 -0
- sphinx-8.2.0/tests/conftest.py +102 -0
- sphinx-8.2.0/tests/js/fixtures/cpp/searchindex.js +1 -0
- sphinx-8.2.0/tests/js/fixtures/multiterm/searchindex.js +1 -0
- sphinx-8.2.0/tests/js/fixtures/partial/searchindex.js +1 -0
- sphinx-8.2.0/tests/js/fixtures/titles/searchindex.js +1 -0
- sphinx-8.2.0/tests/js/roots/titles/relevance.py +8 -0
- sphinx-8.2.0/tests/js/searchtools.spec.js +300 -0
- sphinx-8.2.0/tests/roots/test-add_enumerable_node/enumerable_node.py +64 -0
- sphinx-8.2.0/tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py +20 -0
- sphinx-8.2.0/tests/roots/test-basic/conf.py +10 -0
- sphinx-8.2.0/tests/roots/test-build-text/conf.py +4 -0
- sphinx-8.2.0/tests/roots/test-directive-code/emphasize.rst +6 -0
- sphinx-8.2.0/tests/roots/test-directive-code/python.rst +13 -0
- sphinx-8.2.0/tests/roots/test-directive-code/target.py +31 -0
- sphinx-8.2.0/tests/roots/test-directives-admonition-collapse/index.rst +22 -0
- sphinx-8.2.0/tests/roots/test-domain-c-c_maximum_signature_line_length/conf.py +1 -0
- sphinx-8.2.0/tests/roots/test-domain-c-intersphinx/conf.py +4 -0
- sphinx-8.2.0/tests/roots/test-domain-cpp-cpp_maximum_signature_line_length/conf.py +1 -0
- sphinx-8.2.0/tests/roots/test-domain-cpp-intersphinx/conf.py +4 -0
- sphinx-8.2.0/tests/roots/test-epub-anchor-id/conf.py +2 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc/conf.py +22 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc/index.rst +6 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc/src/exclude_package.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc/src/my_package.py +6 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-custom-templates → sphinx-8.2.0/tests/roots/test-ext-apidoc-custom-templates}/mypackage/mymodule.py +0 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-pep420/a/b/c/__init__.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-pep420/a/b/c/d.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-pep420/a/b/e/f.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-pep420/a/b/x/y.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-subpackage-in-toc/parent/child/foo.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-toc/mypackage/main.py +11 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-toc/mypackage/something/__init__.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-trailing-underscore/package_/__init__.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-apidoc-trailing-underscore/package_/module_.py +9 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/autodoc_dummy_bar.py +7 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/autodoc_dummy_module.py +6 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/bug2437/autodoc_dummy_foo.py +4 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/conf.py +12 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/TYPE_CHECKING.py +17 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/__init__.py +213 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/_functions_to_import.py +8 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/annotated.py +42 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/autoclass_content.py +54 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/autodoc_type_aliases.py +50 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/classes.py +49 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/coroutine.py +38 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/decorator.py +56 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/descriptor.py +32 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/docstring_signature.py +35 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/empty_all.py +15 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/functions.py +24 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/generic_class.py +14 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/genericalias.py +17 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/inheritance.py +31 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/inherited_annotations.py +19 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/literal.py +25 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/name_conflict/__init__.py +7 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/need_mocks.py +43 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/overload.py +81 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/partialfunction.py +12 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/partialmethod.py +17 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/preserve_defaults.py +78 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/preserve_defaults_special_constructs.py +54 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/private.py +28 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/process_docstring.py +7 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/properties.py +22 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/singledispatch.py +35 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/slots.py +24 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/typed_vars.py +37 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/typehints.py +110 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/typevar.py +32 -0
- sphinx-8.2.0/tests/roots/test-ext-autodoc/target/wrappedfunction.py +17 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary/autosummary_class_module.py +2 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py +12 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary/autosummary_dummy_module.py +68 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-ext/dummy_module.py +81 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-ext/index.rst +8 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-ext/underscore_module_.py +14 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-filename-map/autosummary_dummy_module.py +23 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-filename-map/conf.py +11 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-import_cycle/spam/eggs.py +11 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-imported_members/autosummary_dummy_package/autosummary_dummy_module.py +9 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-mock_imports/foo.py +7 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-module_all/autosummary_dummy_package_all/__init__.py +13 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-module_empty_all/autosummary_dummy_package_empty_all/__init__.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-module_empty_all/conf.py +11 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-module_empty_all/index.rst +8 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-module_empty_all/templates/autosummary/module.rst +13 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-recursive/package/module.py +13 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-recursive/package/package/module.py +13 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-recursive/package2/module.py +13 -0
- sphinx-8.2.0/tests/roots/test-ext-autosummary-skip-member/conf.py +20 -0
- sphinx-8.2.0/tests/roots/test-ext-coverage/grog/coverage_missing.py +8 -0
- sphinx-8.2.0/tests/roots/test-ext-doctest/conf.py +8 -0
- sphinx-8.2.0/tests/roots/test-ext-doctest-skipif/conf.py +18 -0
- sphinx-8.2.0/tests/roots/test-ext-doctest-with-autodoc/dir/bar.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-doctest-with-autodoc/foo.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-graphviz/conf.py +3 -0
- sphinx-8.2.0/tests/roots/test-ext-imgmockconverter/mocksvgconverter.py +40 -0
- sphinx-8.2.0/tests/roots/test-ext-inheritance_diagram/test.py +22 -0
- sphinx-8.2.0/tests/roots/test-ext-math/math.rst +31 -0
- sphinx-8.2.0/tests/roots/test-ext-math-compat/conf.py +20 -0
- sphinx-8.2.0/tests/roots/test-ext-napoleon/mypackage/typehints.py +10 -0
- sphinx-8.2.0/tests/roots/test-ext-napoleon-paramtype/conf.py +16 -0
- sphinx-8.2.0/tests/roots/test-ext-napoleon-paramtype/pkg/bar.py +10 -0
- sphinx-8.2.0/tests/roots/test-ext-napoleon-paramtype/pkg/foo.py +28 -0
- sphinx-8.2.0/tests/roots/test-ext-todo/foo.rst +10 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode/conf.py +30 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode/objects.rst +176 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode/spam/mod1.py +23 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode/spam/mod2.py +16 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode-find/not_a_package/submodule.py +29 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode-find-package/conf.py +24 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode-find-package/index.rst +10 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode-find-package/main_package/__init__.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode-find-package/main_package/subpackage/__init__.py +3 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode-find-package/main_package/subpackage/_subpackage2/__init__.py +1 -0
- sphinx-8.2.0/tests/roots/test-ext-viewcode-find-package/main_package/subpackage/_subpackage2/submodule.py +24 -0
- sphinx-8.2.0/tests/roots/test-extensions/read_parallel.py +4 -0
- sphinx-8.2.0/tests/roots/test-extensions/read_serial.py +4 -0
- sphinx-8.2.0/tests/roots/test-extensions/write_serial.py +4 -0
- sphinx-8.2.0/tests/roots/test-highlight_options/conf.py +4 -0
- sphinx-8.2.0/tests/roots/test-html_assets/conf.py +20 -0
- sphinx-8.2.0/tests/roots/test-html_entity/index.rst +32 -0
- sphinx-8.2.0/tests/roots/test-image-in-parsed-literal/conf.py +9 -0
- sphinx-8.2.0/tests/roots/test-image-in-section/conf.py +8 -0
- sphinx-8.2.0/tests/roots/test-inheritance/dummy/test.py +33 -0
- sphinx-8.2.0/tests/roots/test-inheritance/dummy/test_nested.py +10 -0
- sphinx-8.2.0/tests/roots/test-intl/admonitions.txt +51 -0
- sphinx-8.2.0/tests/roots/test-intl/conf.py +10 -0
- sphinx-8.2.0/tests/roots/test-intl/external_links.txt +36 -0
- sphinx-8.2.0/tests/roots/test-intl/footnote.txt +15 -0
- sphinx-8.2.0/tests/roots/test-intl/seealso.txt +16 -0
- sphinx-8.2.0/tests/roots/test-intl/xx/LC_MESSAGES/definition_terms.po +47 -0
- sphinx-8.2.0/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms_inconsistency.po +26 -0
- sphinx-8.2.0/tests/roots/test-intl/xx/LC_MESSAGES/rubric.po +29 -0
- sphinx-8.2.0/tests/roots/test-latex-includegraphics/conf.py +47 -0
- sphinx-8.2.0/tests/roots/test-latex-labels/index.rst +74 -0
- sphinx-8.2.0/tests/roots/test-latex-labels-before-module/automodule1.py +1 -0
- sphinx-8.2.0/tests/roots/test-latex-labels-before-module/automodule2a.py +1 -0
- sphinx-8.2.0/tests/roots/test-latex-labels-before-module/automodule2b.py +1 -0
- sphinx-8.2.0/tests/roots/test-latex-labels-before-module/automodule3.py +1 -0
- sphinx-8.2.0/tests/roots/test-latex-numfig/conf.py +6 -0
- sphinx-8.2.0/tests/roots/test-latex-title/conf.py +4 -0
- sphinx-8.2.0/tests/roots/test-local-logo/conf.py +10 -0
- sphinx-8.2.0/tests/roots/test-markup-citation/conf.py +9 -0
- sphinx-8.2.0/tests/roots/test-markup-rubric/conf.py +10 -0
- sphinx-8.2.0/tests/roots/test-remote-logo/conf.py +11 -0
- sphinx-8.2.0/tests/roots/test-roles-download/conf.py +9 -0
- sphinx-8.2.0/tests/roots/test-root/autodoc_target.py +221 -0
- sphinx-8.2.0/tests/roots/test-root/conf.py +168 -0
- sphinx-8.2.0/tests/roots/test-root/extensions.txt +28 -0
- sphinx-8.2.0/tests/roots/test-root/footnote.txt +61 -0
- sphinx-8.2.0/tests/roots/test-root/index.txt +67 -0
- sphinx-8.2.0/tests/roots/test-root/math.txt +31 -0
- sphinx-8.2.0/tests/roots/test-root/special/code.py +2 -0
- sphinx-8.2.0/tests/roots/test-search/index.rst +34 -0
- sphinx-8.2.0/tests/roots/test-stylesheets/conf.py +9 -0
- sphinx-8.2.0/tests/roots/test-templating/conf.py +11 -0
- sphinx-8.2.0/tests/roots/test-toctree/index.rst +56 -0
- sphinx-8.2.0/tests/roots/test-transforms-post_transforms-keyboard/index.rst +5 -0
- sphinx-8.2.0/tests/roots/test-util-copyasset_overwrite/myext.py +24 -0
- sphinx-8.2.0/tests/roots/test-versioning/conf.py +5 -0
- sphinx-8.2.0/tests/roots/test-warnings/autodoc_fodder.py +5 -0
- sphinx-8.2.0/tests/test__cli/test__cli_util_errors.py +81 -0
- sphinx-8.2.0/tests/test_application.py +177 -0
- sphinx-8.2.0/tests/test_builders/test_build.py +111 -0
- sphinx-8.2.0/tests/test_builders/test_build_all.py +99 -0
- sphinx-8.2.0/tests/test_builders/test_build_changes.py +46 -0
- sphinx-8.2.0/tests/test_builders/test_build_dirhtml.py +67 -0
- sphinx-8.2.0/tests/test_builders/test_build_epub.py +544 -0
- sphinx-8.2.0/tests/test_builders/test_build_gettext.py +325 -0
- sphinx-8.2.0/tests/test_builders/test_build_html.py +773 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_5_output.py +524 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_assets.py +182 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_code.py +72 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_copyright.py +109 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_download.py +82 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_highlight.py +131 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_image.py +116 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_maths.py +92 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_numfig.py +1108 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_tocdepth.py +116 -0
- sphinx-8.2.0/tests/test_builders/test_build_html_toctree.py +97 -0
- sphinx-8.2.0/tests/test_builders/test_build_latex.py +2334 -0
- sphinx-8.2.0/tests/test_builders/test_build_linkcheck.py +1371 -0
- sphinx-8.2.0/tests/test_builders/test_build_manpage.py +126 -0
- sphinx-8.2.0/tests/test_builders/test_build_texinfo.py +154 -0
- sphinx-8.2.0/tests/test_builders/test_build_text.py +266 -0
- sphinx-8.2.0/tests/test_builders/test_build_warnings.py +137 -0
- sphinx-8.2.0/tests/test_builders/test_incremental_reading.py +59 -0
- sphinx-8.2.0/tests/test_command_line.py +236 -0
- sphinx-8.2.0/tests/test_config/test_config.py +812 -0
- sphinx-8.2.0/tests/test_config/test_copyright.py +251 -0
- sphinx-8.2.0/tests/test_directives/test_directive_code.py +627 -0
- sphinx-8.2.0/tests/test_directives/test_directive_object_description.py +69 -0
- sphinx-8.2.0/tests/test_directives/test_directive_only.py +52 -0
- sphinx-8.2.0/tests/test_directives/test_directive_option.py +64 -0
- sphinx-8.2.0/tests/test_directives/test_directive_other.py +211 -0
- sphinx-8.2.0/tests/test_directives/test_directive_patch.py +133 -0
- sphinx-8.2.0/tests/test_directives/test_directive_productionlist.py +153 -0
- sphinx-8.2.0/tests/test_directives/test_directives_no_typesetting.py +220 -0
- sphinx-8.2.0/tests/test_domains/test_domain_c.py +1402 -0
- sphinx-8.2.0/tests/test_domains/test_domain_cpp.py +2452 -0
- sphinx-8.2.0/tests/test_domains/test_domain_js.py +894 -0
- sphinx-8.2.0/tests/test_domains/test_domain_py.py +1766 -0
- sphinx-8.2.0/tests/test_domains/test_domain_py_canonical.py +116 -0
- sphinx-8.2.0/tests/test_domains/test_domain_py_fields.py +590 -0
- sphinx-8.2.0/tests/test_domains/test_domain_py_pyfunction.py +813 -0
- sphinx-8.2.0/tests/test_domains/test_domain_py_pyobject.py +1150 -0
- sphinx-8.2.0/tests/test_domains/test_domain_rst.py +286 -0
- sphinx-8.2.0/tests/test_domains/test_domain_std.py +592 -0
- sphinx-8.2.0/tests/test_environment/test_environment.py +228 -0
- sphinx-8.2.0/tests/test_environment/test_environment_indexentries.py +291 -0
- sphinx-8.2.0/tests/test_environment/test_environment_record_dependencies.py +19 -0
- sphinx-8.2.0/tests/test_environment/test_environment_toctree.py +909 -0
- sphinx-8.2.0/tests/test_errors.py +13 -0
- sphinx-8.2.0/tests/test_events.py +60 -0
- sphinx-8.2.0/tests/test_extensions/autodoc_util.py +34 -0
- sphinx-8.2.0/tests/test_extensions/ext_napoleon_pep526_data_google.py +18 -0
- sphinx-8.2.0/tests/test_extensions/ext_napoleon_pep526_data_numpy.py +22 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_apidoc.py +799 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc.py +3302 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_autoattribute.py +183 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_autoclass.py +589 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_autodata.py +115 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_autofunction.py +221 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_automodule.py +245 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_autoproperty.py +104 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_configs.py +1862 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_events.py +142 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_importer.py +22 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_mock.py +152 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_preserve_defaults.py +207 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autodoc_private_members.py +170 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autosectionlabel.py +107 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autosummary.py +989 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_autosummary_imports.py +77 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_coverage.py +131 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_doctest.py +149 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_duration.py +23 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_extlinks.py +60 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_githubpages.py +41 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_graphviz.py +220 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_ifconfig.py +34 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_imgconverter.py +45 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_imgmockconverter.py +24 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_inheritance_diagram.py +384 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_intersphinx.py +873 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_intersphinx_cache.py +316 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_math.py +568 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_napoleon.py +292 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_napoleon_docstring.py +2916 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_todo.py +126 -0
- sphinx-8.2.0/tests/test_extensions/test_ext_viewcode.py +194 -0
- sphinx-8.2.0/tests/test_extensions/test_extension.py +35 -0
- sphinx-8.2.0/tests/test_highlighting.py +131 -0
- sphinx-8.2.0/tests/test_intl/test_catalogs.py +91 -0
- sphinx-8.2.0/tests/test_intl/test_intl.py +2019 -0
- sphinx-8.2.0/tests/test_markup/__init__.py +0 -0
- sphinx-8.2.0/tests/test_markup/test_markup.py +845 -0
- sphinx-8.2.0/tests/test_markup/test_metadata.py +52 -0
- sphinx-8.2.0/tests/test_markup/test_parser.py +65 -0
- sphinx-8.2.0/tests/test_markup/test_smartquotes.py +171 -0
- sphinx-8.2.0/tests/test_project.py +106 -0
- sphinx-8.2.0/tests/test_pycode/__init__.py +0 -0
- sphinx-8.2.0/tests/test_pycode/test_pycode.py +195 -0
- sphinx-8.2.0/tests/test_pycode/test_pycode_ast.py +73 -0
- sphinx-8.2.0/tests/test_pycode/test_pycode_parser.py +597 -0
- sphinx-8.2.0/tests/test_quickstart.py +274 -0
- sphinx-8.2.0/tests/test_roles.py +139 -0
- sphinx-8.2.0/tests/test_search.py +486 -0
- sphinx-8.2.0/tests/test_theming/__init__.py +0 -0
- sphinx-8.2.0/tests/test_theming/test_html_theme.py +50 -0
- sphinx-8.2.0/tests/test_theming/test_templating.py +51 -0
- sphinx-8.2.0/tests/test_theming/test_theming.py +259 -0
- sphinx-8.2.0/tests/test_transforms/__init__.py +0 -0
- sphinx-8.2.0/tests/test_transforms/test_transforms_move_module_targets.py +84 -0
- sphinx-8.2.0/tests/test_transforms/test_transforms_post_transforms.py +316 -0
- sphinx-8.2.0/tests/test_transforms/test_transforms_post_transforms_code.py +56 -0
- sphinx-8.2.0/tests/test_transforms/test_transforms_post_transforms_images.py +48 -0
- sphinx-8.2.0/tests/test_transforms/test_transforms_reorder_nodes.py +147 -0
- sphinx-8.2.0/tests/test_transforms/test_unreferenced_footnotes.py +50 -0
- sphinx-8.2.0/tests/test_util/__init__.py +0 -0
- sphinx-8.2.0/tests/test_util/test_util.py +90 -0
- sphinx-8.2.0/tests/test_util/test_util_display.py +115 -0
- sphinx-8.2.0/tests/test_util/test_util_docstrings.py +84 -0
- sphinx-8.2.0/tests/test_util/test_util_docutils.py +101 -0
- sphinx-8.2.0/tests/test_util/test_util_docutils_sphinx_directive.py +148 -0
- sphinx-8.2.0/tests/test_util/test_util_fileutil.py +158 -0
- sphinx-8.2.0/tests/test_util/test_util_i18n.py +222 -0
- sphinx-8.2.0/tests/test_util/test_util_images.py +87 -0
- sphinx-8.2.0/tests/test_util/test_util_importer.py +28 -0
- sphinx-8.2.0/tests/test_util/test_util_inspect.py +994 -0
- sphinx-8.2.0/tests/test_util/test_util_inventory.py +120 -0
- sphinx-8.2.0/tests/test_util/test_util_lines.py +24 -0
- sphinx-8.2.0/tests/test_util/test_util_logging.py +425 -0
- sphinx-8.2.0/tests/test_util/test_util_matching.py +316 -0
- sphinx-8.2.0/tests/test_util/test_util_nodes.py +271 -0
- sphinx-8.2.0/tests/test_util/test_util_rst.py +181 -0
- sphinx-8.2.0/tests/test_util/test_util_template.py +29 -0
- sphinx-8.2.0/tests/test_util/test_util_typing.py +1041 -0
- sphinx-8.2.0/tests/test_util/test_util_uri.py +23 -0
- sphinx-8.2.0/tests/test_versioning.py +122 -0
- sphinx-8.2.0/tests/test_writers/__init__.py +0 -0
- sphinx-8.2.0/tests/test_writers/test_api_translator.py +103 -0
- sphinx-8.2.0/tests/test_writers/test_docutilsconf.py +41 -0
- sphinx-8.2.0/tests/test_writers/test_writer_latex.py +30 -0
- sphinx-8.2.0/tests/utils.py +125 -0
- sphinx-8.2.0/tox.ini +86 -0
- sphinx-8.2.0/utils/__init__.py +0 -0
- sphinx-8.2.0/utils/babel_runner.py +300 -0
- sphinx-8.2.0/utils/bump_docker.py +57 -0
- sphinx-8.2.0/utils/bump_version.py +209 -0
- sphinx-8.2.0/utils/convert_attestations.py +52 -0
- sphinx-8.2.0/utils/generate_js_fixtures.py +40 -0
- sphinx-8.1.2/AUTHORS.rst +0 -107
- sphinx-8.1.2/CHANGES.rst +0 -192
- sphinx-8.1.2/LICENSE.rst +0 -31
- sphinx-8.1.2/PKG-INFO +0 -154
- sphinx-8.1.2/doc/_static/translation.svg +0 -42
- sphinx-8.1.2/doc/_themes/sphinx13/static/sphinx13.css +0 -727
- sphinx-8.1.2/doc/changes/index.rst +0 -71
- sphinx-8.1.2/doc/conf.py +0 -357
- sphinx-8.1.2/doc/development/html_themes/index.rst +0 -522
- sphinx-8.1.2/doc/development/tutorials/examples/autodoc_intenum.py +0 -61
- sphinx-8.1.2/doc/development/tutorials/examples/todo.py +0 -142
- sphinx-8.1.2/doc/development/tutorials/extending_build.rst +0 -379
- sphinx-8.1.2/doc/development/tutorials/extending_syntax.rst +0 -223
- sphinx-8.1.2/doc/extdev/appapi.rst +0 -194
- sphinx-8.1.2/doc/extdev/deprecated.rst +0 -1945
- sphinx-8.1.2/doc/extdev/envapi.rst +0 -60
- sphinx-8.1.2/doc/extdev/i18n.rst +0 -97
- sphinx-8.1.2/doc/extdev/index.rst +0 -220
- sphinx-8.1.2/doc/internals/contributing.rst +0 -358
- sphinx-8.1.2/doc/man/sphinx-apidoc.rst +0 -177
- sphinx-8.1.2/doc/man/sphinx-build.rst +0 -406
- sphinx-8.1.2/doc/tutorial/deploying.rst +0 -276
- sphinx-8.1.2/doc/tutorial/describing-code.rst +0 -276
- sphinx-8.1.2/doc/usage/configuration.rst +0 -4198
- sphinx-8.1.2/doc/usage/domains/index.rst +0 -213
- sphinx-8.1.2/doc/usage/domains/python.rst +0 -771
- sphinx-8.1.2/doc/usage/domains/standard.rst +0 -133
- sphinx-8.1.2/doc/usage/extensions/autodoc.rst +0 -1383
- sphinx-8.1.2/doc/usage/extensions/autosummary.rst +0 -364
- sphinx-8.1.2/doc/usage/extensions/coverage.rst +0 -148
- sphinx-8.1.2/doc/usage/extensions/doctest.rst +0 -385
- sphinx-8.1.2/doc/usage/extensions/example_google.py +0 -310
- sphinx-8.1.2/doc/usage/extensions/example_numpy.py +0 -350
- sphinx-8.1.2/doc/usage/extensions/extlinks.rst +0 -69
- sphinx-8.1.2/doc/usage/extensions/graphviz.rst +0 -239
- sphinx-8.1.2/doc/usage/extensions/imgconverter.rst +0 -55
- sphinx-8.1.2/doc/usage/extensions/index.rst +0 -81
- sphinx-8.1.2/doc/usage/extensions/inheritance.rst +0 -174
- sphinx-8.1.2/doc/usage/extensions/intersphinx.rst +0 -231
- sphinx-8.1.2/doc/usage/extensions/linkcode.rst +0 -51
- sphinx-8.1.2/doc/usage/extensions/math.rst +0 -320
- sphinx-8.1.2/doc/usage/extensions/napoleon.rst +0 -574
- sphinx-8.1.2/doc/usage/extensions/todo.rst +0 -62
- sphinx-8.1.2/doc/usage/extensions/viewcode.rst +0 -106
- sphinx-8.1.2/doc/usage/installation.rst +0 -268
- sphinx-8.1.2/doc/usage/referencing.rst +0 -300
- sphinx-8.1.2/doc/usage/restructuredtext/directives.rst +0 -1661
- sphinx-8.1.2/doc/usage/restructuredtext/field-lists.rst +0 -78
- sphinx-8.1.2/pyproject.toml +0 -370
- sphinx-8.1.2/sphinx/__init__.py +0 -55
- sphinx-8.1.2/sphinx/__main__.py +0 -7
- sphinx-8.1.2/sphinx/_cli/__init__.py +0 -316
- sphinx-8.1.2/sphinx/_cli/util/colour.py +0 -104
- sphinx-8.1.2/sphinx/_cli/util/errors.py +0 -182
- sphinx-8.1.2/sphinx/addnodes.py +0 -608
- sphinx-8.1.2/sphinx/application.py +0 -1723
- sphinx-8.1.2/sphinx/builders/__init__.py +0 -870
- sphinx-8.1.2/sphinx/builders/_epub_base.py +0 -792
- sphinx-8.1.2/sphinx/builders/changes.py +0 -192
- sphinx-8.1.2/sphinx/builders/dirhtml.py +0 -55
- sphinx-8.1.2/sphinx/builders/epub3.py +0 -328
- sphinx-8.1.2/sphinx/builders/gettext.py +0 -341
- sphinx-8.1.2/sphinx/builders/html/__init__.py +0 -1509
- sphinx-8.1.2/sphinx/builders/html/_assets.py +0 -182
- sphinx-8.1.2/sphinx/builders/html/_build_info.py +0 -76
- sphinx-8.1.2/sphinx/builders/html/transforms.py +0 -90
- sphinx-8.1.2/sphinx/builders/latex/__init__.py +0 -642
- sphinx-8.1.2/sphinx/builders/latex/constants.py +0 -215
- sphinx-8.1.2/sphinx/builders/latex/nodes.py +0 -42
- sphinx-8.1.2/sphinx/builders/latex/theming.py +0 -137
- sphinx-8.1.2/sphinx/builders/latex/transforms.py +0 -659
- sphinx-8.1.2/sphinx/builders/linkcheck.py +0 -768
- sphinx-8.1.2/sphinx/builders/manpage.py +0 -146
- sphinx-8.1.2/sphinx/builders/singlehtml.py +0 -211
- sphinx-8.1.2/sphinx/builders/texinfo.py +0 -269
- sphinx-8.1.2/sphinx/builders/text.py +0 -99
- sphinx-8.1.2/sphinx/builders/xml.py +0 -127
- sphinx-8.1.2/sphinx/cmd/build.py +0 -567
- sphinx-8.1.2/sphinx/cmd/make_mode.py +0 -219
- sphinx-8.1.2/sphinx/cmd/quickstart.py +0 -800
- sphinx-8.1.2/sphinx/config.py +0 -803
- sphinx-8.1.2/sphinx/directives/__init__.py +0 -385
- sphinx-8.1.2/sphinx/directives/code.py +0 -509
- sphinx-8.1.2/sphinx/directives/other.py +0 -463
- sphinx-8.1.2/sphinx/directives/patches.py +0 -226
- sphinx-8.1.2/sphinx/domains/__init__.py +0 -308
- sphinx-8.1.2/sphinx/domains/_domains_container.py +0 -281
- sphinx-8.1.2/sphinx/domains/_index.py +0 -110
- sphinx-8.1.2/sphinx/domains/c/__init__.py +0 -849
- sphinx-8.1.2/sphinx/domains/c/_ast.py +0 -1846
- sphinx-8.1.2/sphinx/domains/c/_ids.py +0 -65
- sphinx-8.1.2/sphinx/domains/c/_parser.py +0 -1053
- sphinx-8.1.2/sphinx/domains/c/_symbol.py +0 -655
- sphinx-8.1.2/sphinx/domains/changeset.py +0 -166
- sphinx-8.1.2/sphinx/domains/citation.py +0 -159
- sphinx-8.1.2/sphinx/domains/cpp/__init__.py +0 -1178
- sphinx-8.1.2/sphinx/domains/cpp/_ast.py +0 -4431
- sphinx-8.1.2/sphinx/domains/cpp/_ids.py +0 -537
- sphinx-8.1.2/sphinx/domains/cpp/_parser.py +0 -2118
- sphinx-8.1.2/sphinx/domains/cpp/_symbol.py +0 -1095
- sphinx-8.1.2/sphinx/domains/index.py +0 -128
- sphinx-8.1.2/sphinx/domains/javascript.py +0 -513
- sphinx-8.1.2/sphinx/domains/math.py +0 -158
- sphinx-8.1.2/sphinx/domains/python/__init__.py +0 -947
- sphinx-8.1.2/sphinx/domains/python/_annotations.py +0 -529
- sphinx-8.1.2/sphinx/domains/python/_object.py +0 -427
- sphinx-8.1.2/sphinx/domains/rst.py +0 -304
- sphinx-8.1.2/sphinx/domains/std/__init__.py +0 -1211
- sphinx-8.1.2/sphinx/environment/__init__.py +0 -840
- sphinx-8.1.2/sphinx/environment/adapters/asset.py +0 -16
- sphinx-8.1.2/sphinx/environment/adapters/indexentries.py +0 -273
- sphinx-8.1.2/sphinx/environment/adapters/toctree.py +0 -578
- sphinx-8.1.2/sphinx/environment/collectors/__init__.py +0 -100
- sphinx-8.1.2/sphinx/environment/collectors/asset.py +0 -180
- sphinx-8.1.2/sphinx/environment/collectors/dependencies.py +0 -62
- sphinx-8.1.2/sphinx/environment/collectors/metadata.py +0 -76
- sphinx-8.1.2/sphinx/environment/collectors/title.py +0 -67
- sphinx-8.1.2/sphinx/environment/collectors/toctree.py +0 -401
- sphinx-8.1.2/sphinx/errors.py +0 -141
- sphinx-8.1.2/sphinx/events.py +0 -436
- sphinx-8.1.2/sphinx/ext/apidoc.py +0 -721
- sphinx-8.1.2/sphinx/ext/autodoc/__init__.py +0 -2870
- sphinx-8.1.2/sphinx/ext/autodoc/directive.py +0 -151
- sphinx-8.1.2/sphinx/ext/autodoc/importer.py +0 -406
- sphinx-8.1.2/sphinx/ext/autodoc/mock.py +0 -203
- sphinx-8.1.2/sphinx/ext/autodoc/preserve_defaults.py +0 -200
- sphinx-8.1.2/sphinx/ext/autodoc/type_comment.py +0 -141
- sphinx-8.1.2/sphinx/ext/autodoc/typehints.py +0 -220
- sphinx-8.1.2/sphinx/ext/autosectionlabel.py +0 -69
- sphinx-8.1.2/sphinx/ext/autosummary/__init__.py +0 -867
- sphinx-8.1.2/sphinx/ext/autosummary/generate.py +0 -882
- sphinx-8.1.2/sphinx/ext/coverage.py +0 -496
- sphinx-8.1.2/sphinx/ext/doctest.py +0 -576
- sphinx-8.1.2/sphinx/ext/duration.py +0 -101
- sphinx-8.1.2/sphinx/ext/extlinks.py +0 -127
- sphinx-8.1.2/sphinx/ext/githubpages.py +0 -58
- sphinx-8.1.2/sphinx/ext/graphviz.py +0 -470
- sphinx-8.1.2/sphinx/ext/ifconfig.py +0 -80
- sphinx-8.1.2/sphinx/ext/imgconverter.py +0 -96
- sphinx-8.1.2/sphinx/ext/imgmath.py +0 -409
- sphinx-8.1.2/sphinx/ext/inheritance_diagram.py +0 -494
- sphinx-8.1.2/sphinx/ext/intersphinx/__init__.py +0 -101
- sphinx-8.1.2/sphinx/ext/intersphinx/__main__.py +0 -10
- sphinx-8.1.2/sphinx/ext/intersphinx/_cli.py +0 -47
- sphinx-8.1.2/sphinx/ext/intersphinx/_load.py +0 -423
- sphinx-8.1.2/sphinx/ext/intersphinx/_resolve.py +0 -603
- sphinx-8.1.2/sphinx/ext/intersphinx/_shared.py +0 -148
- sphinx-8.1.2/sphinx/ext/linkcode.py +0 -84
- sphinx-8.1.2/sphinx/ext/mathjax.py +0 -126
- sphinx-8.1.2/sphinx/ext/napoleon/__init__.py +0 -492
- sphinx-8.1.2/sphinx/ext/napoleon/docstring.py +0 -1433
- sphinx-8.1.2/sphinx/ext/todo.py +0 -255
- sphinx-8.1.2/sphinx/ext/viewcode.py +0 -363
- sphinx-8.1.2/sphinx/extension.py +0 -92
- sphinx-8.1.2/sphinx/highlighting.py +0 -231
- sphinx-8.1.2/sphinx/io.py +0 -194
- sphinx-8.1.2/sphinx/jinja2glue.py +0 -250
- sphinx-8.1.2/sphinx/locale/__init__.py +0 -239
- sphinx-8.1.2/sphinx/locale/ar/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ar/LC_MESSAGES/sphinx.po +0 -4115
- sphinx-8.1.2/sphinx/locale/bg/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/bg/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/bn/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/bn/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/ca/LC_MESSAGES/sphinx.js +0 -63
- sphinx-8.1.2/sphinx/locale/ca/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ca/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/cak/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/cak/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/cs/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/cs/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/cy/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/cy/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/da/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/da/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/de/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/de/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/el/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/el/LC_MESSAGES/sphinx.po +0 -4112
- sphinx-8.1.2/sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/eo/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/eo/LC_MESSAGES/sphinx.po +0 -4111
- sphinx-8.1.2/sphinx/locale/es/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/es/LC_MESSAGES/sphinx.po +0 -4119
- sphinx-8.1.2/sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/et/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/et/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/eu/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/eu/LC_MESSAGES/sphinx.po +0 -4111
- sphinx-8.1.2/sphinx/locale/fa/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/fa/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/fi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/fi/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/fr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/fr/LC_MESSAGES/sphinx.po +0 -4138
- sphinx-8.1.2/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/gl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/gl/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/he/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/he/LC_MESSAGES/sphinx.po +0 -4111
- sphinx-8.1.2/sphinx/locale/hi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/hi/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/hr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/hr/LC_MESSAGES/sphinx.po +0 -4111
- sphinx-8.1.2/sphinx/locale/hu/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/hu/LC_MESSAGES/sphinx.po +0 -4115
- sphinx-8.1.2/sphinx/locale/id/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/id/LC_MESSAGES/sphinx.po +0 -4114
- sphinx-8.1.2/sphinx/locale/is/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/is/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/it/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/it/LC_MESSAGES/sphinx.po +0 -4117
- sphinx-8.1.2/sphinx/locale/ja/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ja/LC_MESSAGES/sphinx.po +0 -4125
- sphinx-8.1.2/sphinx/locale/ka/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ka/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/ko/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ko/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/lt/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/lt/LC_MESSAGES/sphinx.po +0 -4112
- sphinx-8.1.2/sphinx/locale/lv/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/lv/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/mk/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/mk/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/ne/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ne/LC_MESSAGES/sphinx.po +0 -4111
- sphinx-8.1.2/sphinx/locale/nl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/nl/LC_MESSAGES/sphinx.po +0 -4116
- sphinx-8.1.2/sphinx/locale/pl/LC_MESSAGES/sphinx.js +0 -65
- sphinx-8.1.2/sphinx/locale/pl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/pl/LC_MESSAGES/sphinx.po +0 -4117
- sphinx-8.1.2/sphinx/locale/pt/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/pt/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +0 -4116
- sphinx-8.1.2/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +0 -4112
- sphinx-8.1.2/sphinx/locale/ro/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ro/LC_MESSAGES/sphinx.po +0 -4112
- sphinx-8.1.2/sphinx/locale/ru/LC_MESSAGES/sphinx.js +0 -65
- sphinx-8.1.2/sphinx/locale/ru/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ru/LC_MESSAGES/sphinx.po +0 -4121
- sphinx-8.1.2/sphinx/locale/si/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/si/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/sk/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/sk/LC_MESSAGES/sphinx.po +0 -4114
- sphinx-8.1.2/sphinx/locale/sl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/sl/LC_MESSAGES/sphinx.po +0 -4111
- sphinx-8.1.2/sphinx/locale/sphinx.pot +0 -4131
- sphinx-8.1.2/sphinx/locale/sq/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/sq/LC_MESSAGES/sphinx.po +0 -4110
- sphinx-8.1.2/sphinx/locale/sr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/sr/LC_MESSAGES/sphinx.po +0 -4112
- sphinx-8.1.2/sphinx/locale/sv/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/sv/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/te/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/te/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/tr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/tr/LC_MESSAGES/sphinx.po +0 -4113
- sphinx-8.1.2/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +0 -4112
- sphinx-8.1.2/sphinx/locale/ur/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/ur/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/vi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/vi/LC_MESSAGES/sphinx.po +0 -4109
- sphinx-8.1.2/sphinx/locale/yue/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/yue/LC_MESSAGES/sphinx.po +0 -4108
- sphinx-8.1.2/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +0 -4108
- sphinx-8.1.2/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +0 -4116
- sphinx-8.1.2/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +0 -0
- sphinx-8.1.2/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +0 -4108
- sphinx-8.1.2/sphinx/parsers.py +0 -101
- sphinx-8.1.2/sphinx/project.py +0 -128
- sphinx-8.1.2/sphinx/pycode/__init__.py +0 -160
- sphinx-8.1.2/sphinx/pycode/ast.py +0 -203
- sphinx-8.1.2/sphinx/pycode/parser.py +0 -599
- sphinx-8.1.2/sphinx/pygments_styles.py +0 -96
- sphinx-8.1.2/sphinx/registry.py +0 -527
- sphinx-8.1.2/sphinx/roles.py +0 -602
- sphinx-8.1.2/sphinx/search/__init__.py +0 -622
- sphinx-8.1.2/sphinx/search/en.py +0 -220
- sphinx-8.1.2/sphinx/search/fi.py +0 -111
- sphinx-8.1.2/sphinx/search/ja.py +0 -545
- sphinx-8.1.2/sphinx/search/nl.py +0 -125
- sphinx-8.1.2/sphinx/search/zh.py +0 -266
- sphinx-8.1.2/sphinx/testing/fixtures.py +0 -263
- sphinx-8.1.2/sphinx/testing/path.py +0 -228
- sphinx-8.1.2/sphinx/testing/restructuredtext.py +0 -35
- sphinx-8.1.2/sphinx/testing/util.py +0 -289
- sphinx-8.1.2/sphinx/texinputs/make.bat.jinja +0 -50
- sphinx-8.1.2/sphinx/texinputs/sphinx.sty +0 -1195
- sphinx-8.1.2/sphinx/texinputs/sphinxlatexadmonitions.sty +0 -403
- sphinx-8.1.2/sphinx/texinputs/sphinxlatexobjects.sty +0 -365
- sphinx-8.1.2/sphinx/themes/basic/static/searchtools.js +0 -632
- sphinx-8.1.2/sphinx/theming.py +0 -561
- sphinx-8.1.2/sphinx/transforms/__init__.py +0 -548
- sphinx-8.1.2/sphinx/transforms/compact_bullet_list.py +0 -92
- sphinx-8.1.2/sphinx/transforms/i18n.py +0 -709
- sphinx-8.1.2/sphinx/transforms/post_transforms/__init__.py +0 -350
- sphinx-8.1.2/sphinx/transforms/post_transforms/code.py +0 -143
- sphinx-8.1.2/sphinx/transforms/post_transforms/images.py +0 -298
- sphinx-8.1.2/sphinx/transforms/references.py +0 -48
- sphinx-8.1.2/sphinx/util/__init__.py +0 -108
- sphinx-8.1.2/sphinx/util/_files.py +0 -80
- sphinx-8.1.2/sphinx/util/_importer.py +0 -27
- sphinx-8.1.2/sphinx/util/_io.py +0 -33
- sphinx-8.1.2/sphinx/util/_lines.py +0 -26
- sphinx-8.1.2/sphinx/util/_pathlib.py +0 -135
- sphinx-8.1.2/sphinx/util/build_phase.py +0 -13
- sphinx-8.1.2/sphinx/util/cfamily.py +0 -517
- sphinx-8.1.2/sphinx/util/console.py +0 -211
- sphinx-8.1.2/sphinx/util/display.py +0 -100
- sphinx-8.1.2/sphinx/util/docfields.py +0 -492
- sphinx-8.1.2/sphinx/util/docstrings.py +0 -88
- sphinx-8.1.2/sphinx/util/docutils.py +0 -777
- sphinx-8.1.2/sphinx/util/exceptions.py +0 -74
- sphinx-8.1.2/sphinx/util/fileutil.py +0 -165
- sphinx-8.1.2/sphinx/util/http_date.py +0 -48
- sphinx-8.1.2/sphinx/util/i18n.py +0 -322
- sphinx-8.1.2/sphinx/util/images.py +0 -149
- sphinx-8.1.2/sphinx/util/inspect.py +0 -951
- sphinx-8.1.2/sphinx/util/inventory.py +0 -229
- sphinx-8.1.2/sphinx/util/logging.py +0 -642
- sphinx-8.1.2/sphinx/util/matching.py +0 -170
- sphinx-8.1.2/sphinx/util/nodes.py +0 -747
- sphinx-8.1.2/sphinx/util/osutil.py +0 -265
- sphinx-8.1.2/sphinx/util/parallel.py +0 -160
- sphinx-8.1.2/sphinx/util/parsing.py +0 -95
- sphinx-8.1.2/sphinx/util/png.py +0 -43
- sphinx-8.1.2/sphinx/util/requests.py +0 -80
- sphinx-8.1.2/sphinx/util/rst.py +0 -114
- sphinx-8.1.2/sphinx/util/tags.py +0 -115
- sphinx-8.1.2/sphinx/util/template.py +0 -155
- sphinx-8.1.2/sphinx/util/texescape.py +0 -153
- sphinx-8.1.2/sphinx/util/typing.py +0 -606
- sphinx-8.1.2/sphinx/versioning.py +0 -184
- sphinx-8.1.2/sphinx/writers/html.py +0 -59
- sphinx-8.1.2/sphinx/writers/html5.py +0 -996
- sphinx-8.1.2/sphinx/writers/latex.py +0 -2494
- sphinx-8.1.2/sphinx/writers/manpage.py +0 -490
- sphinx-8.1.2/sphinx/writers/texinfo.py +0 -1592
- sphinx-8.1.2/sphinx/writers/text.py +0 -1329
- sphinx-8.1.2/sphinx/writers/xml.py +0 -53
- sphinx-8.1.2/tests/conftest.py +0 -82
- sphinx-8.1.2/tests/js/fixtures/cpp/searchindex.js +0 -1
- sphinx-8.1.2/tests/js/fixtures/multiterm/searchindex.js +0 -1
- sphinx-8.1.2/tests/js/fixtures/partial/searchindex.js +0 -1
- sphinx-8.1.2/tests/js/fixtures/titles/searchindex.js +0 -1
- sphinx-8.1.2/tests/js/roots/titles/relevance.py +0 -7
- sphinx-8.1.2/tests/js/searchtools.spec.js +0 -287
- sphinx-8.1.2/tests/roots/test-add_enumerable_node/enumerable_node.py +0 -62
- sphinx-8.1.2/tests/roots/test-add_source_parser-conflicts-with-users-setting/conf.py +0 -20
- sphinx-8.1.2/tests/roots/test-apidoc-pep420/a/b/c/__init__.py +0 -1
- sphinx-8.1.2/tests/roots/test-apidoc-pep420/a/b/c/d.py +0 -1
- sphinx-8.1.2/tests/roots/test-apidoc-pep420/a/b/e/f.py +0 -1
- sphinx-8.1.2/tests/roots/test-apidoc-pep420/a/b/x/y.py +0 -1
- sphinx-8.1.2/tests/roots/test-apidoc-subpackage-in-toc/parent/child/foo.py +0 -1
- sphinx-8.1.2/tests/roots/test-apidoc-toc/mypackage/main.py +0 -15
- sphinx-8.1.2/tests/roots/test-apidoc-toc/mypackage/something/__init__.py +0 -1
- sphinx-8.1.2/tests/roots/test-apidoc-trailing-underscore/package_/__init__.py +0 -1
- sphinx-8.1.2/tests/roots/test-apidoc-trailing-underscore/package_/module_.py +0 -9
- sphinx-8.1.2/tests/roots/test-autosummary/dummy_module.py +0 -85
- sphinx-8.1.2/tests/roots/test-autosummary/index.rst +0 -8
- sphinx-8.1.2/tests/roots/test-autosummary/underscore_module_.py +0 -15
- sphinx-8.1.2/tests/roots/test-basic/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-build-text/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-directive-code/emphasize.rst +0 -7
- sphinx-8.1.2/tests/roots/test-directive-code/python.rst +0 -13
- sphinx-8.1.2/tests/roots/test-directive-code/target.py +0 -26
- sphinx-8.1.2/tests/roots/test-domain-c-c_maximum_signature_line_length/conf.py +0 -1
- sphinx-8.1.2/tests/roots/test-domain-c-intersphinx/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-domain-cpp-cpp_maximum_signature_line_length/conf.py +0 -1
- sphinx-8.1.2/tests/roots/test-domain-cpp-intersphinx/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-epub-anchor-id/conf.py +0 -2
- sphinx-8.1.2/tests/roots/test-ext-autodoc/autodoc_dummy_bar.py +0 -6
- sphinx-8.1.2/tests/roots/test-ext-autodoc/autodoc_dummy_module.py +0 -6
- sphinx-8.1.2/tests/roots/test-ext-autodoc/bug2437/autodoc_dummy_foo.py +0 -3
- sphinx-8.1.2/tests/roots/test-ext-autodoc/conf.py +0 -12
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/TYPE_CHECKING.py +0 -16
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/__init__.py +0 -204
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/_functions_to_import.py +0 -8
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/annotated.py +0 -42
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/autoclass_content.py +0 -47
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/autodoc_type_aliases.py +0 -49
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/classes.py +0 -44
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/coroutine.py +0 -37
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/decorator.py +0 -53
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/descriptor.py +0 -31
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/docstring_signature.py +0 -33
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/empty_all.py +0 -16
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/functions.py +0 -22
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/generic_class.py +0 -13
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/genericalias.py +0 -16
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/inheritance.py +0 -25
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/inherited_annotations.py +0 -17
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/literal.py +0 -24
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/name_conflict/__init__.py +0 -6
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/need_mocks.py +0 -42
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/overload.py +0 -90
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/partialfunction.py +0 -12
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/partialmethod.py +0 -17
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/preserve_defaults.py +0 -60
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/preserve_defaults_special_constructs.py +0 -50
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/private.py +0 -27
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/process_docstring.py +0 -8
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/properties.py +0 -22
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/singledispatch.py +0 -36
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/slots.py +0 -22
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/typed_vars.py +0 -34
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/typehints.py +0 -105
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/typevar.py +0 -32
- sphinx-8.1.2/tests/roots/test-ext-autodoc/target/wrappedfunction.py +0 -17
- sphinx-8.1.2/tests/roots/test-ext-autosummary/autosummary_class_module.py +0 -2
- sphinx-8.1.2/tests/roots/test-ext-autosummary/autosummary_dummy_inherited_module.py +0 -13
- sphinx-8.1.2/tests/roots/test-ext-autosummary/autosummary_dummy_module.py +0 -68
- sphinx-8.1.2/tests/roots/test-ext-autosummary-filename-map/autosummary_dummy_module.py +0 -23
- sphinx-8.1.2/tests/roots/test-ext-autosummary-filename-map/conf.py +0 -11
- sphinx-8.1.2/tests/roots/test-ext-autosummary-import_cycle/spam/eggs.py +0 -10
- sphinx-8.1.2/tests/roots/test-ext-autosummary-imported_members/autosummary_dummy_package/autosummary_dummy_module.py +0 -8
- sphinx-8.1.2/tests/roots/test-ext-autosummary-mock_imports/foo.py +0 -6
- sphinx-8.1.2/tests/roots/test-ext-autosummary-module_all/autosummary_dummy_package_all/__init__.py +0 -13
- sphinx-8.1.2/tests/roots/test-ext-autosummary-recursive/package/module.py +0 -13
- sphinx-8.1.2/tests/roots/test-ext-autosummary-recursive/package/package/module.py +0 -13
- sphinx-8.1.2/tests/roots/test-ext-autosummary-recursive/package2/module.py +0 -13
- sphinx-8.1.2/tests/roots/test-ext-autosummary-skip-member/conf.py +0 -19
- sphinx-8.1.2/tests/roots/test-ext-coverage/grog/coverage_missing.py +0 -7
- sphinx-8.1.2/tests/roots/test-ext-doctest/conf.py +0 -8
- sphinx-8.1.2/tests/roots/test-ext-doctest-skipif/conf.py +0 -18
- sphinx-8.1.2/tests/roots/test-ext-doctest-with-autodoc/dir/bar.py +0 -4
- sphinx-8.1.2/tests/roots/test-ext-doctest-with-autodoc/foo.py +0 -5
- sphinx-8.1.2/tests/roots/test-ext-graphviz/conf.py +0 -3
- sphinx-8.1.2/tests/roots/test-ext-imgmockconverter/mocksvgconverter.py +0 -38
- sphinx-8.1.2/tests/roots/test-ext-inheritance_diagram/test.py +0 -22
- sphinx-8.1.2/tests/roots/test-ext-math/math.rst +0 -31
- sphinx-8.1.2/tests/roots/test-ext-math-compat/conf.py +0 -20
- sphinx-8.1.2/tests/roots/test-ext-napoleon/mypackage/typehints.py +0 -11
- sphinx-8.1.2/tests/roots/test-ext-napoleon-paramtype/conf.py +0 -16
- sphinx-8.1.2/tests/roots/test-ext-napoleon-paramtype/pkg/bar.py +0 -10
- sphinx-8.1.2/tests/roots/test-ext-napoleon-paramtype/pkg/foo.py +0 -27
- sphinx-8.1.2/tests/roots/test-ext-todo/foo.rst +0 -10
- sphinx-8.1.2/tests/roots/test-ext-viewcode/conf.py +0 -23
- sphinx-8.1.2/tests/roots/test-ext-viewcode/objects.rst +0 -169
- sphinx-8.1.2/tests/roots/test-ext-viewcode/spam/mod1.py +0 -30
- sphinx-8.1.2/tests/roots/test-ext-viewcode/spam/mod2.py +0 -22
- sphinx-8.1.2/tests/roots/test-ext-viewcode-find/not_a_package/submodule.py +0 -31
- sphinx-8.1.2/tests/roots/test-extensions/read_parallel.py +0 -4
- sphinx-8.1.2/tests/roots/test-extensions/read_serial.py +0 -4
- sphinx-8.1.2/tests/roots/test-extensions/write_serial.py +0 -4
- sphinx-8.1.2/tests/roots/test-highlight_options/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-html_assets/conf.py +0 -12
- sphinx-8.1.2/tests/roots/test-html_entity/index.rst +0 -31
- sphinx-8.1.2/tests/roots/test-image-in-parsed-literal/conf.py +0 -9
- sphinx-8.1.2/tests/roots/test-image-in-section/conf.py +0 -8
- sphinx-8.1.2/tests/roots/test-inheritance/dummy/test.py +0 -35
- sphinx-8.1.2/tests/roots/test-inheritance/dummy/test_nested.py +0 -11
- sphinx-8.1.2/tests/roots/test-intl/admonitions.txt +0 -50
- sphinx-8.1.2/tests/roots/test-intl/conf.py +0 -10
- sphinx-8.1.2/tests/roots/test-intl/external_links.txt +0 -35
- sphinx-8.1.2/tests/roots/test-intl/footnote.txt +0 -14
- sphinx-8.1.2/tests/roots/test-intl/seealso.txt +0 -15
- sphinx-8.1.2/tests/roots/test-intl/xx/LC_MESSAGES/definition_terms.po +0 -47
- sphinx-8.1.2/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms_inconsistency.po +0 -26
- sphinx-8.1.2/tests/roots/test-intl/xx/LC_MESSAGES/rubric.po +0 -29
- sphinx-8.1.2/tests/roots/test-latex-includegraphics/conf.py +0 -47
- sphinx-8.1.2/tests/roots/test-latex-labels/index.rst +0 -72
- sphinx-8.1.2/tests/roots/test-latex-labels-before-module/automodule1.py +0 -2
- sphinx-8.1.2/tests/roots/test-latex-labels-before-module/automodule2a.py +0 -2
- sphinx-8.1.2/tests/roots/test-latex-labels-before-module/automodule2b.py +0 -2
- sphinx-8.1.2/tests/roots/test-latex-labels-before-module/automodule3.py +0 -2
- sphinx-8.1.2/tests/roots/test-latex-numfig/conf.py +0 -8
- sphinx-8.1.2/tests/roots/test-latex-title/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-local-logo/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-markup-citation/conf.py +0 -3
- sphinx-8.1.2/tests/roots/test-markup-rubric/conf.py +0 -4
- sphinx-8.1.2/tests/roots/test-remote-logo/conf.py +0 -5
- sphinx-8.1.2/tests/roots/test-roles-download/conf.py +0 -3
- sphinx-8.1.2/tests/roots/test-root/autodoc_target.py +0 -221
- sphinx-8.1.2/tests/roots/test-root/conf.py +0 -156
- sphinx-8.1.2/tests/roots/test-root/extensions.txt +0 -28
- sphinx-8.1.2/tests/roots/test-root/footnote.txt +0 -60
- sphinx-8.1.2/tests/roots/test-root/index.txt +0 -65
- sphinx-8.1.2/tests/roots/test-root/math.txt +0 -31
- sphinx-8.1.2/tests/roots/test-root/special/code.py +0 -2
- sphinx-8.1.2/tests/roots/test-search/index.rst +0 -30
- sphinx-8.1.2/tests/roots/test-stylesheets/conf.py +0 -9
- sphinx-8.1.2/tests/roots/test-templating/conf.py +0 -11
- sphinx-8.1.2/tests/roots/test-theming/test_theme/__init__.py +0 -5
- sphinx-8.1.2/tests/roots/test-toctree/index.rst +0 -55
- sphinx-8.1.2/tests/roots/test-transforms-post_transforms-keyboard/index.rst +0 -4
- sphinx-8.1.2/tests/roots/test-util-copyasset_overwrite/myext.py +0 -22
- sphinx-8.1.2/tests/roots/test-versioning/conf.py +0 -5
- sphinx-8.1.2/tests/roots/test-warnings/autodoc_fodder.py +0 -6
- sphinx-8.1.2/tests/test_application.py +0 -177
- sphinx-8.1.2/tests/test_builders/test_build.py +0 -191
- sphinx-8.1.2/tests/test_builders/test_build_changes.py +0 -39
- sphinx-8.1.2/tests/test_builders/test_build_dirhtml.py +0 -55
- sphinx-8.1.2/tests/test_builders/test_build_epub.py +0 -491
- sphinx-8.1.2/tests/test_builders/test_build_gettext.py +0 -323
- sphinx-8.1.2/tests/test_builders/test_build_html.py +0 -655
- sphinx-8.1.2/tests/test_builders/test_build_html_5_output.py +0 -523
- sphinx-8.1.2/tests/test_builders/test_build_html_assets.py +0 -172
- sphinx-8.1.2/tests/test_builders/test_build_html_code.py +0 -59
- sphinx-8.1.2/tests/test_builders/test_build_html_copyright.py +0 -81
- sphinx-8.1.2/tests/test_builders/test_build_html_download.py +0 -76
- sphinx-8.1.2/tests/test_builders/test_build_html_highlight.py +0 -114
- sphinx-8.1.2/tests/test_builders/test_build_html_image.py +0 -110
- sphinx-8.1.2/tests/test_builders/test_build_html_maths.py +0 -76
- sphinx-8.1.2/tests/test_builders/test_build_html_numfig.py +0 -1103
- sphinx-8.1.2/tests/test_builders/test_build_html_tocdepth.py +0 -114
- sphinx-8.1.2/tests/test_builders/test_build_html_toctree.py +0 -87
- sphinx-8.1.2/tests/test_builders/test_build_latex.py +0 -2328
- sphinx-8.1.2/tests/test_builders/test_build_linkcheck.py +0 -1318
- sphinx-8.1.2/tests/test_builders/test_build_manpage.py +0 -119
- sphinx-8.1.2/tests/test_builders/test_build_texinfo.py +0 -147
- sphinx-8.1.2/tests/test_builders/test_build_text.py +0 -280
- sphinx-8.1.2/tests/test_builders/test_build_warnings.py +0 -131
- sphinx-8.1.2/tests/test_builders/test_incremental_reading.py +0 -53
- sphinx-8.1.2/tests/test_command_line.py +0 -233
- sphinx-8.1.2/tests/test_config/test_config.py +0 -782
- sphinx-8.1.2/tests/test_config/test_copyright.py +0 -232
- sphinx-8.1.2/tests/test_directives/test_directive_code.py +0 -612
- sphinx-8.1.2/tests/test_directives/test_directive_object_description.py +0 -65
- sphinx-8.1.2/tests/test_directives/test_directive_only.py +0 -49
- sphinx-8.1.2/tests/test_directives/test_directive_option.py +0 -57
- sphinx-8.1.2/tests/test_directives/test_directive_other.py +0 -205
- sphinx-8.1.2/tests/test_directives/test_directive_patch.py +0 -126
- sphinx-8.1.2/tests/test_directives/test_directives_no_typesetting.py +0 -218
- sphinx-8.1.2/tests/test_domains/test_domain_c.py +0 -1396
- sphinx-8.1.2/tests/test_domains/test_domain_cpp.py +0 -2446
- sphinx-8.1.2/tests/test_domains/test_domain_js.py +0 -755
- sphinx-8.1.2/tests/test_domains/test_domain_py.py +0 -1501
- sphinx-8.1.2/tests/test_domains/test_domain_py_canonical.py +0 -107
- sphinx-8.1.2/tests/test_domains/test_domain_py_fields.py +0 -580
- sphinx-8.1.2/tests/test_domains/test_domain_py_pyfunction.py +0 -810
- sphinx-8.1.2/tests/test_domains/test_domain_py_pyobject.py +0 -1092
- sphinx-8.1.2/tests/test_domains/test_domain_rst.py +0 -279
- sphinx-8.1.2/tests/test_domains/test_domain_std.py +0 -660
- sphinx-8.1.2/tests/test_environment/test_environment.py +0 -222
- sphinx-8.1.2/tests/test_environment/test_environment_indexentries.py +0 -284
- sphinx-8.1.2/tests/test_environment/test_environment_record_dependencies.py +0 -10
- sphinx-8.1.2/tests/test_environment/test_environment_toctree.py +0 -877
- sphinx-8.1.2/tests/test_errors.py +0 -11
- sphinx-8.1.2/tests/test_events.py +0 -61
- sphinx-8.1.2/tests/test_extensions/autodoc_util.py +0 -33
- sphinx-8.1.2/tests/test_extensions/ext_napoleon_pep526_data_google.py +0 -16
- sphinx-8.1.2/tests/test_extensions/ext_napoleon_pep526_data_numpy.py +0 -21
- sphinx-8.1.2/tests/test_extensions/test_ext_apidoc.py +0 -767
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc.py +0 -3136
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_autoattribute.py +0 -176
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_autoclass.py +0 -586
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_autodata.py +0 -106
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_autofunction.py +0 -214
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_automodule.py +0 -224
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_autoproperty.py +0 -97
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_configs.py +0 -1849
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_events.py +0 -115
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_mock.py +0 -152
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_preserve_defaults.py +0 -200
- sphinx-8.1.2/tests/test_extensions/test_ext_autodoc_private_members.py +0 -163
- sphinx-8.1.2/tests/test_extensions/test_ext_autosectionlabel.py +0 -100
- sphinx-8.1.2/tests/test_extensions/test_ext_autosummary.py +0 -926
- sphinx-8.1.2/tests/test_extensions/test_ext_autosummary_imports.py +0 -66
- sphinx-8.1.2/tests/test_extensions/test_ext_coverage.py +0 -125
- sphinx-8.1.2/tests/test_extensions/test_ext_doctest.py +0 -143
- sphinx-8.1.2/tests/test_extensions/test_ext_duration.py +0 -17
- sphinx-8.1.2/tests/test_extensions/test_ext_extlinks.py +0 -51
- sphinx-8.1.2/tests/test_extensions/test_ext_githubpages.py +0 -32
- sphinx-8.1.2/tests/test_extensions/test_ext_graphviz.py +0 -219
- sphinx-8.1.2/tests/test_extensions/test_ext_ifconfig.py +0 -27
- sphinx-8.1.2/tests/test_extensions/test_ext_imgconverter.py +0 -39
- sphinx-8.1.2/tests/test_extensions/test_ext_imgmockconverter.py +0 -17
- sphinx-8.1.2/tests/test_extensions/test_ext_inheritance_diagram.py +0 -376
- sphinx-8.1.2/tests/test_extensions/test_ext_intersphinx.py +0 -868
- sphinx-8.1.2/tests/test_extensions/test_ext_intersphinx_cache.py +0 -312
- sphinx-8.1.2/tests/test_extensions/test_ext_math.py +0 -554
- sphinx-8.1.2/tests/test_extensions/test_ext_napoleon.py +0 -291
- sphinx-8.1.2/tests/test_extensions/test_ext_napoleon_docstring.py +0 -2909
- sphinx-8.1.2/tests/test_extensions/test_ext_todo.py +0 -121
- sphinx-8.1.2/tests/test_extensions/test_ext_viewcode.py +0 -163
- sphinx-8.1.2/tests/test_extensions/test_extension.py +0 -28
- sphinx-8.1.2/tests/test_highlighting.py +0 -125
- sphinx-8.1.2/tests/test_intl/test_catalogs.py +0 -85
- sphinx-8.1.2/tests/test_intl/test_intl.py +0 -1959
- sphinx-8.1.2/tests/test_markup/test_markup.py +0 -820
- sphinx-8.1.2/tests/test_markup/test_metadata.py +0 -47
- sphinx-8.1.2/tests/test_markup/test_parser.py +0 -63
- sphinx-8.1.2/tests/test_markup/test_smartquotes.py +0 -164
- sphinx-8.1.2/tests/test_project.py +0 -100
- sphinx-8.1.2/tests/test_pycode/test_pycode.py +0 -191
- sphinx-8.1.2/tests/test_pycode/test_pycode_ast.py +0 -71
- sphinx-8.1.2/tests/test_pycode/test_pycode_parser.py +0 -598
- sphinx-8.1.2/tests/test_quickstart.py +0 -273
- sphinx-8.1.2/tests/test_roles.py +0 -137
- sphinx-8.1.2/tests/test_search.py +0 -487
- sphinx-8.1.2/tests/test_theming/test_html_theme.py +0 -43
- sphinx-8.1.2/tests/test_theming/test_templating.py +0 -48
- sphinx-8.1.2/tests/test_theming/test_theming.py +0 -250
- sphinx-8.1.2/tests/test_transforms/test_transforms_move_module_targets.py +0 -82
- sphinx-8.1.2/tests/test_transforms/test_transforms_post_transforms.py +0 -316
- sphinx-8.1.2/tests/test_transforms/test_transforms_post_transforms_code.py +0 -47
- sphinx-8.1.2/tests/test_transforms/test_transforms_post_transforms_images.py +0 -46
- sphinx-8.1.2/tests/test_transforms/test_transforms_reorder_nodes.py +0 -143
- sphinx-8.1.2/tests/test_transforms/test_unreferenced_footnotes.py +0 -43
- sphinx-8.1.2/tests/test_util/test_util.py +0 -16
- sphinx-8.1.2/tests/test_util/test_util_console.py +0 -90
- sphinx-8.1.2/tests/test_util/test_util_display.py +0 -108
- sphinx-8.1.2/tests/test_util/test_util_docstrings.py +0 -82
- sphinx-8.1.2/tests/test_util/test_util_docutils.py +0 -100
- sphinx-8.1.2/tests/test_util/test_util_docutils_sphinx_directive.py +0 -148
- sphinx-8.1.2/tests/test_util/test_util_fileutil.py +0 -151
- sphinx-8.1.2/tests/test_util/test_util_i18n.py +0 -210
- sphinx-8.1.2/tests/test_util/test_util_images.py +0 -85
- sphinx-8.1.2/tests/test_util/test_util_importer.py +0 -26
- sphinx-8.1.2/tests/test_util/test_util_inspect.py +0 -905
- sphinx-8.1.2/tests/test_util/test_util_inventory.py +0 -128
- sphinx-8.1.2/tests/test_util/test_util_lines.py +0 -22
- sphinx-8.1.2/tests/test_util/test_util_logging.py +0 -388
- sphinx-8.1.2/tests/test_util/test_util_matching.py +0 -314
- sphinx-8.1.2/tests/test_util/test_util_nodes.py +0 -272
- sphinx-8.1.2/tests/test_util/test_util_rst.py +0 -179
- sphinx-8.1.2/tests/test_util/test_util_template.py +0 -27
- sphinx-8.1.2/tests/test_util/test_util_typing.py +0 -989
- sphinx-8.1.2/tests/test_util/test_util_uri.py +0 -21
- sphinx-8.1.2/tests/test_versioning.py +0 -120
- sphinx-8.1.2/tests/test_writers/test_api_translator.py +0 -92
- sphinx-8.1.2/tests/test_writers/test_docutilsconf.py +0 -38
- sphinx-8.1.2/tests/test_writers/test_writer_latex.py +0 -28
- sphinx-8.1.2/tests/utils.py +0 -127
- sphinx-8.1.2/tox.ini +0 -87
- sphinx-8.1.2/utils/babel_runner.py +0 -298
- sphinx-8.1.2/utils/bump_docker.py +0 -55
- sphinx-8.1.2/utils/bump_version.py +0 -207
- sphinx-8.1.2/utils/convert_attestations.py +0 -42
- sphinx-8.1.2/utils/generate_js_fixtures.py +0 -39
- {sphinx-8.1.2 → sphinx-8.2.0}/CODE_OF_CONDUCT.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/EXAMPLES.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/README.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/Makefile +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/Makefile +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/bookcover.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/diagrams/sphinx_build_flow.dot +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/diagrams/sphinx_core_events_flow.dot +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/favicon.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/jupyter-logo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/linux-logo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/python-logo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/sphinx.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/agogo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/alabaster.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/bizstyle.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/classic.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/agogo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/alabaster.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/bizstyle.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/classic.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/haiku.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/nature.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/pyramid.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/scrolls.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/sphinx_rtd_theme.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/sphinxdoc.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/fullsize/traditional.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/haiku.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/nature.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/pyramid.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/scrolls.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/sphinx_rtd_theme.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/sphinxdoc.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/themes/traditional.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/translation.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/translation.puml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/tutorial/lumache-autosummary.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/tutorial/lumache-first-light.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/tutorial/lumache-furo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/tutorial/lumache-py-function-full.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_static/tutorial/lumache-py-function.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_templates/contents.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_themes/sphinx13/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_themes/sphinx13/static/sphinx-logo.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/_themes/sphinx13/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/authors.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/0.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/0.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/0.3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/0.4.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/0.5.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/0.6.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.4.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.5.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.6.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.7.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/1.8.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/2.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/2.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/2.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/2.3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/2.4.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/3.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/3.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/3.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/3.3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/3.4.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/3.5.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/4.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/4.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/4.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/4.3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/4.4.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/4.5.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/5.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/5.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/5.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/5.3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/6.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/6.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/6.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/7.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/7.1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/7.2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/7.3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/7.4.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/changes/8.0.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/howtos/builders.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/howtos/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/howtos/setup_extension.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/html_themes/templating.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/tutorials/adding_domain.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/tutorials/autodoc_ext.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/tutorials/examples/README.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/tutorials/examples/helloworld.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/tutorials/examples/recipe.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/development/tutorials/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/examples.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/builderapi.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/collectorapi.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/domainapi.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/event_callbacks.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/logging.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/markupapi.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/nodes.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/parserapi.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/projectapi.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/testing.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/extdev/utils.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/faq.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/glossary.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/internals/code-of-conduct.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/internals/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/internals/organization.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/internals/release-process.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/latex.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/make.bat +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/man/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/man/sphinx-autogen.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/man/sphinx-quickstart.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/support.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/tutorial/automatic-doc-generation.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/tutorial/end.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/tutorial/first-steps.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/tutorial/getting-started.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/tutorial/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/tutorial/more-sphinx-customization.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/tutorial/narrative-documentation.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/advanced/intl.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/advanced/websupport/api.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/advanced/websupport/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/advanced/websupport/quickstart.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/advanced/websupport/searchadapters.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/advanced/websupport/storagebackends.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/builders/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/domains/c.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/domains/cpp.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/domains/javascript.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/domains/mathematics.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/domains/restructuredtext.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/extensions/autosectionlabel.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/extensions/duration.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/extensions/example_google.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/extensions/example_numpy.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/extensions/githubpages.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/extensions/ifconfig.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/markdown.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/quickstart.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/restructuredtext/basics.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/restructuredtext/domains.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/restructuredtext/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/restructuredtext/roles.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/doc/usage/theming.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/_cli/util/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/builders/dummy.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/builders/latex/util.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/cmd/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/deprecation.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/environment/adapters/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/ext/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/ext/autosummary/templates/autosummary/base.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/ext/autosummary/templates/autosummary/class.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/ext/autosummary/templates/autosummary/module.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/.tx/config +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ar/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/bg/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/bn/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/cak/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/cs/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/cy/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/da/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/de/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/de_DE/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/el/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/en_DE/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/en_FR/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/en_GB/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/en_HK/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/eo/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/es/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/es_CO/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/et/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/eu/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/fa/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/fi/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/fr/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/gl/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/he/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/hi/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/hr/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/hu/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/id/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/is/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/it/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ja/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ka/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ko/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/lt/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/lv/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/mk/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ne/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/nl/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/pt/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ro/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/si/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sk/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sl/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sq/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sr/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/sv/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ta/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ta/LC_MESSAGES/sphinx.mo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ta/LC_MESSAGES/sphinx.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/te/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/tr/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/ur/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/vi/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/yue/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/py.typed +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/da.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/de.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/es.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/fr.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/hu.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/it.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/base-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/danish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/dutch-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/finnish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/french-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/german-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/hungarian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/italian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/norwegian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/porter-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/portuguese-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/romanian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/russian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/spanish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/swedish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/minified-js/turkish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/no.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/base-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/danish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/dutch-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/finnish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/french-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/german-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/hungarian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/italian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/norwegian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/porter-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/portuguese-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/romanian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/russian-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/spanish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/swedish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/non-minified-js/turkish-stemmer.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/pt.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/ro.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/ru.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/sv.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/search/tr.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/apidoc/module.rst.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/apidoc/package.rst.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/apidoc/toc.rst.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/epub3/container.xml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/epub3/content.opf.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/epub3/mimetype +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/epub3/nav.xhtml.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/epub3/toc.ncx.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/gettext/message.pot.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/graphviz/graphviz.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/htmlhelp/project.hhc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/htmlhelp/project.hhp +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/htmlhelp/project.stp +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/imgmath/preview.tex.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/imgmath/template.tex.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/latex/latex.tex.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/latex/longtable.tex.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/latex/sphinxmessages.sty.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/latex/tabular.tex.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/latex/tabulary.tex.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/quickstart/Makefile.new.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/quickstart/conf.py.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/quickstart/make.bat.new.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/quickstart/root_doc.rst.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/templates/texinfo/Makefile +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/testing/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/LICRcyr2utf8.xdy +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/LICRlatin2utf8.xdy +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/LatinRules.xdy +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/Makefile.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/latexmkjarc.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/latexmkrc.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/python.ist +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinx.xdy +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxhowto.cls +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexcontainers.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexgraphics.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexindbibtoc.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexlists.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexliterals.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexnumfig.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexshadowbox.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexstyleheadings.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexstylepage.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatexstyletext.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxlatextables.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxmanual.cls +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxoptionsgeometry.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxoptionshyperref.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxpackageboxes.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxpackagecyrillic.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxpackagefootnote.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs/sphinxpackagesubstitutefont.sty +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/texinputs_win/Makefile.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/agogo/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/agogo/static/agogo.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/agogo/static/bgfooter.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/agogo/static/bgtop.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/agogo/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/changes/frameset.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/changes/rstsource.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/changes/versionchanges.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/defindex.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/domainindex.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/genindex-single.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/genindex-split.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/genindex.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/globaltoc.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/localtoc.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/opensearch.xml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/page.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/relations.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/search.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/searchbox.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/searchfield.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/sourcelink.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/basic.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/doctools.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/documentation_options.js.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/file.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/language_data.js.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/minus.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/plus.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/static/sphinx_highlight.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/basic/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/bizstyle/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/bizstyle/static/background_b01.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/bizstyle/static/bizstyle.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/bizstyle/static/bizstyle.js.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/bizstyle/static/css3-mediaqueries.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/bizstyle/static/css3-mediaqueries_src.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/bizstyle/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/classic/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/classic/static/classic.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/classic/static/sidebar.js.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/classic/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/default/static/default.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/default/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/epub/epub-cover.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/epub/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/epub/static/epub.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/epub/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/haiku/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/haiku/static/alert_info_32.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/haiku/static/alert_warning_32.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/haiku/static/bg-page.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/haiku/static/bullet_orange.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/haiku/static/haiku.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/haiku/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/nature/static/nature.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/nature/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/nonav/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/nonav/static/nonav.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/nonav/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/dialog-note.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/dialog-seealso.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/dialog-todo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/dialog-topic.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/dialog-warning.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/epub.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/footerbg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/headerbg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/ie6.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/middlebg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/pyramid.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/static/transparent.gif +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/pyramid/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/artwork/logo.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/darkmetal.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/headerbg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/logo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/metal.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/navigation.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/print.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/scrolls.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/theme_extras.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/watermark.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/static/watermark_blur.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/scrolls/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/sphinxdoc/static/contents.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/sphinxdoc/static/navigation.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/sphinxdoc/static/sphinxdoc.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/sphinxdoc/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/traditional/static/traditional.css.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/themes/traditional/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/util/_serialise.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/util/_timestamps.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/util/_uri.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/util/index_entries.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/util/math.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/sphinx/writers/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/certs/cert.pem +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/documentation_options.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/jasmine-browser.mjs +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/language_data.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/cpp/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/cpp/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/multiterm/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/multiterm/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/partial/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/partial/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/titles/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/titles/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/roots/titles/relevance.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/js/sphinx_highlight.spec.js +0 -0
- {sphinx-8.1.2/tests/roots/test-builder-dirhtml → sphinx-8.2.0/tests/roots/test-_blank}/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-copyright-multiline → sphinx-8.2.0/tests/roots/test-_blank}/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-add_enumerable_node/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-add_enumerable_node/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-add_enumerable_node/rimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-add_source_parser/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-add_source_parser/source_parser.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-add_source_parser-conflicts-with-users-setting/source_parser.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-api-set-translator/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-api-set-translator/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-api-set-translator/nonext/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-api-set-translator/translator.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-basic/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-html-theme-having-multiple-stylesheets/_themes/mytheme/_static/extra.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-html-theme-having-multiple-stylesheets/_themes/mytheme/_static/mytheme.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-html-theme-having-multiple-stylesheets/_themes/mytheme/theme.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-html-theme-having-multiple-stylesheets/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-html-theme-having-multiple-stylesheets/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-html-translator/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-html-translator/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/doc1.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/doc2.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/index.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/lineblock.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/listitems.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/maxwidth.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/nonascii_maxwidth.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/nonascii_table.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/nonascii_title.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/table.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/table_colspan.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/table_colspan_and_rowspan.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/table_colspan_left.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-build-text/table_rowspan.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-dirhtml/bar.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-default_role → sphinx-8.2.0/tests/roots/test-builder-dirhtml}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-dirhtml/foo/foo_1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-dirhtml/foo/foo_2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-dirhtml/foo/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-dirhtml/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-gettext-dont-rebuild-mo/bom.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-gettext-dont-rebuild-mo/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-gettext-dont-rebuild-mo/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-builder-gettext-dont-rebuild-mo/xx/LC_MESSAGES/bom.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-changes/base.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-changes/c-api.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-changes/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-changes/contents.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-changes/library/utils.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-circular/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-circular/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-circular/sub.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-config/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-copyright-multiline/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-gettext-template → sphinx-8.2.0/tests/roots/test-copyright-multiline}/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-directive-csv-table → sphinx-8.2.0/tests/roots/test-default_role}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-default_role/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-default_role/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/caption.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/classes.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/dedent.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/empty.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/error.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/force.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/highlight.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/linenos.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/linenothreshold.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/literal-diff.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/literal-short.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/literal.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/namedblocks.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/py-decorators.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-code/py-decorators.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-directives-raw → sphinx-8.2.0/tests/roots/test-directive-csv-table}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-csv-table/example.csv +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-csv-table/subdir/example.csv +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-include/bar.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-include/baz/baz.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-include/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-include/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-include/text.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-only/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-only/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directive-only/only.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-docutilsconf → sphinx-8.2.0/tests/roots/test-directives-admonition-collapse}/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-domain-py-xref-warning → sphinx-8.2.0/tests/roots/test-directives-raw}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-directives-raw/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-math-include → sphinx-8.2.0/tests/roots/test-docutilsconf}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-docutilsconf/docutils.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-docutilsconf/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c/anon-dup-decl.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c/field-role.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c/function_param_target.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c/namespace.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c/ns_lookup.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c-c_maximum_signature_line_length/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-c-intersphinx/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/anon-dup-decl.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/any-role.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/backslash.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/field-role.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/lookup-key-overload.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/multi-decl-lookup.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/operator-lookup.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/roles-targets-ok.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/roles-targets-warn.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/roles.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/roles2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/semicolon.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/warn-template-param-qualified-name.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp/xref_consistency.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp-cpp_maximum_signature_line_length/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-cpp-intersphinx/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-js/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-js/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-js/module.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-js/roles.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-js-javascript_maximum_signature_line_length/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-js-javascript_maximum_signature_line_length/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/abbr.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/canonical.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/module.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/module_option.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/roles.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py/type_alias.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py-python_maximum_signature_line_length/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py-python_maximum_signature_line_length/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py-python_use_unqualified_type_names/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py-python_use_unqualified_type_names/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-math-simple → sphinx-8.2.0/tests/roots/test-domain-py-xref-warning}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-domain-py-xref-warning/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-double-inheriting-theme/base_themes_dir/base_theme1/theme.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-double-inheriting-theme/base_themes_dir/base_theme2/theme.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-double-inheriting-theme/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-double-inheriting-theme/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-environment-record-dependencies/api.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-environment-record-dependencies/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-environment-record-dependencies/example_module.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-environment-record-dependencies/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-epub-anchor-id/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-custom-templates → sphinx-8.2.0/tests/roots/test-ext-apidoc-custom-templates}/_templates/module.rst.jinja +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-custom-templates → sphinx-8.2.0/tests/roots/test-ext-apidoc-custom-templates}/_templates/module.rst_t +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-custom-templates → sphinx-8.2.0/tests/roots/test-ext-apidoc-custom-templates}/_templates/package.rst_t +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-custom-templates → sphinx-8.2.0/tests/roots/test-ext-apidoc-custom-templates}/mypackage/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-duplicates → sphinx-8.2.0/tests/roots/test-ext-apidoc-duplicates}/fish_licence/halibut.cpython-38-x86_64-linux-gnu.so +0 -0
- /sphinx-8.1.2/tests/roots/test-apidoc-duplicates/fish_licence/halibut.pyx → /sphinx-8.2.0/tests/roots/test-ext-apidoc-duplicates/fish_licence/halibut.pyd +0 -0
- /sphinx-8.1.2/tests/roots/test-apidoc-pep420/a/b/e/__init__.py → /sphinx-8.2.0/tests/roots/test-ext-apidoc-duplicates/fish_licence/halibut.pyi +0 -0
- /sphinx-8.1.2/tests/roots/test-apidoc-subpackage-in-toc/parent/__init__.py → /sphinx-8.2.0/tests/roots/test-ext-apidoc-duplicates/fish_licence/halibut.pyx +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-subpackage-in-toc/parent/child → sphinx-8.2.0/tests/roots/test-ext-apidoc-pep420/a/b/e}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-toc/mypackage → sphinx-8.2.0/tests/roots/test-ext-apidoc-subpackage-in-toc/parent}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-toc/mypackage/resource → sphinx-8.2.0/tests/roots/test-ext-apidoc-subpackage-in-toc/parent/child}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-autodoc/bug2437 → sphinx-8.2.0/tests/roots/test-ext-apidoc-toc/mypackage}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-toc → sphinx-8.2.0/tests/roots/test-ext-apidoc-toc}/mypackage/no_init/foo.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-autosummary-module_prefix/pkg → sphinx-8.2.0/tests/roots/test-ext-apidoc-toc/mypackage/resource}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-apidoc-toc → sphinx-8.2.0/tests/roots/test-ext-apidoc-toc}/mypackage/resource/resource.txt +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-autosummary-module_prefix/pkg/mod0 → sphinx-8.2.0/tests/roots/test-ext-autodoc/bug2437}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/circular_import/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/circular_import/a.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/circular_import/b.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/circular_import/c.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/abstractmethods.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/bound_method.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/cached_property.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/callable.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/canonical/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/canonical/original.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/cython.pyx +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/enums.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/final.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/hide_value.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/imported_members.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/instance_variable.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/metadata.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/methods.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/module.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/name_conflict/foo.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/name_mangling.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/overload2.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/pep570.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/pep604.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/singledispatchmethod.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/singledispatchmethod_classmethod.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/sort_by_all.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autodoc/target/uninitialized_attributes.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosectionlabel/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosectionlabel/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosectionlabel-prefix-document/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosectionlabel-prefix-document/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary/autosummary_importfail.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-autosummary → sphinx-8.2.0/tests/roots/test-ext-autosummary-ext}/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-autosummary → sphinx-8.2.0/tests/roots/test-ext-autosummary-ext}/sphinx.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-filename-map/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-import_cycle/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-import_cycle/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-import_cycle/spam/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-imported_members/autosummary_dummy_package/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-imported_members/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-imported_members/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-mock_imports/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-mock_imports/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-module_all/autosummary_dummy_package_all/autosummary_dummy_module.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-module_all/autosummary_dummy_package_all/extra_dummy_module.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-module_all/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-module_all/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-module_prefix/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-module_prefix/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-autosummary-module_prefix/pkg/mod1 → sphinx-8.2.0/tests/roots/test-ext-autosummary-module_prefix/pkg}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-autosummary-recursive/package → sphinx-8.2.0/tests/roots/test-ext-autosummary-module_prefix/pkg/mod0}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-autosummary-recursive/package/package → sphinx-8.2.0/tests/roots/test-ext-autosummary-module_prefix/pkg/mod1}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-recursive/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-recursive/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-autosummary-recursive/package2 → sphinx-8.2.0/tests/roots/test-ext-autosummary-recursive/package}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-recursive/package/module_importfail.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-coverage/grog → sphinx-8.2.0/tests/roots/test-ext-autosummary-recursive/package/package}/__init__.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-doctest-with-autodoc/dir → sphinx-8.2.0/tests/roots/test-ext-autosummary-recursive/package2}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-skip-member/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-skip-member/target.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-template/_templates/empty.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-template/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-template/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-autosummary-template/target.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-coverage/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-napoleon-paramtype/pkg → sphinx-8.2.0/tests/roots/test-ext-coverage/grog}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-coverage/grog/coverage_ignored.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-coverage/grog/coverage_not_ignored.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-coverage/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-doctest/doctest.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-doctest-skipif/skipif.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-doctest-with-autodoc/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-napoleon/mypackage → sphinx-8.2.0/tests/roots/test-ext-doctest-with-autodoc/dir}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-doctest-with-autodoc/dir/inner.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-doctest-with-autodoc/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-extlinks-hardcoded-urls/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-extlinks-hardcoded-urls/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-githubpages/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-githubpages/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-graphviz/_static/images/test.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-graphviz/graph.dot +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-graphviz/graph.xx.dot +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-graphviz/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-ifconfig/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-ifconfig/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgconverter/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgconverter/img.pdf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgconverter/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgconverter/svgimg.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgmockconverter/1/svgimg.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgmockconverter/2/svgimg.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgmockconverter/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-imgmockconverter/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-inheritance_diagram/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-inheritance_diagram/example/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-inheritance_diagram/example/sphinx.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-inheritance_diagram/external/other.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-inheritance_diagram/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-inheritance_diagram/subdir/page1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-inheritance_diagram/subdir/page2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-intersphinx-cppdomain/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-intersphinx-cppdomain/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-intersphinx-role/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-intersphinx-role/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-html_scaled_image_link → sphinx-8.2.0/tests/roots/test-ext-math}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math/nomath.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math/page.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math-compat/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-ext-math → sphinx-8.2.0/tests/roots/test-ext-math-include}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math-include/included.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math-include/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math-include/math.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-glossary → sphinx-8.2.0/tests/roots/test-ext-math-simple}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-math-simple/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-napoleon/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-napoleon/index.rst +0 -0
- {sphinx-8.1.2/tests/test_builders → sphinx-8.2.0/tests/roots/test-ext-napoleon/mypackage}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-napoleon/typehints.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-napoleon-paramtype/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-inheritance/dummy → sphinx-8.2.0/tests/roots/test-ext-napoleon-paramtype/pkg}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-todo/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-todo/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-todo/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-viewcode/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-viewcode/spam/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-viewcode/spam/mod3.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-viewcode-find/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-viewcode-find/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-ext-viewcode-find/not_a_package/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-extensions/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-extensions/write_parallel.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-footnotes/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-footnotes/baz.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-footnotes/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-footnotes/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-footnotes/rimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-gettext-custom-output-template/_templates/message.pot.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-gettext-custom-output-template/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-gettext-custom-output-template/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-gettext-template/_templates/template1.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-gettext-template/_templates/template2.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-gettext-template/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-html_assets/extra → sphinx-8.2.0/tests/roots/test-gettext-template}/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-image-escape → sphinx-8.2.0/tests/roots/test-glossary}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-glossary/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-highlight_options/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/extra/.htaccess +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/extra/.htpasswd +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/extra/API.html.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/extra/css/style.css +0 -0
- {sphinx-8.1.2/tests/roots/test-html_assets/static → sphinx-8.2.0/tests/roots/test-html_assets/extra}/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/extra/rimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/extra/subdir/.htaccess +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/extra/subdir/.htpasswd +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/.htaccess +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/.htpasswd +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/API.html.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/css/style.css +0 -0
- {sphinx-8.1.2/tests/roots/test-html_file_checksum → sphinx-8.2.0/tests/roots/test-html_assets/static}/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/js/custom.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/rimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/subdir/.htaccess +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/static/subdir/.htpasswd +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/subdir/_build/index.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_assets/subdir/background.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_entity/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_file_checksum/conf.py +0 -0
- {sphinx-8.1.2/tests/roots/test-util-copyasset_overwrite → sphinx-8.2.0/tests/roots/test-html_file_checksum}/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_file_checksum/static/empty.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_file_checksum/static/script.js +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_file_checksum/static/stylesheet-a.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_file_checksum/static/stylesheet-b.css +0 -0
- {sphinx-8.1.2/tests/roots/test-images → sphinx-8.2.0/tests/roots/test-html_scaled_image_link}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_scaled_image_link/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_scaled_image_link/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_signaturereturn_icon/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_signaturereturn_icon/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_style/_static/default.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_style/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-html_style/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-index_on_title → sphinx-8.2.0/tests/roots/test-image-escape}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-image-escape/img_#1.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-image-escape/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-image-in-parsed-literal/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-image-in-parsed-literal/pic.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-image-in-section/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-image-in-section/pic.png +0 -0
- {sphinx-8.1.2/tests/roots/test-latex-container → sphinx-8.2.0/tests/roots/test-images}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/img.gif +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/img.ja.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/img.pdf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/img.zh.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/rimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/rimg.png.xx +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/rimg.xx.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/subdir/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/subdir/rimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/subdir/rimg.xx.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/subdir/svgimg.pdf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/subdir/svgimg.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/subdir/svgimg.xx.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-images/testim/303/244ge.png" +0 -0
- {sphinx-8.1.2/tests/roots/test-latex-contents-topic-sidebar → sphinx-8.2.0/tests/roots/test-index_on_title}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-index_on_title/contents.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/basic_diagram.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/diagram_module_w_2_top_classes.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/diagram_w_1_top_class.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/diagram_w_2_top_classes.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/diagram_w_nested_classes.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/diagram_w_parts.rst +0 -0
- {sphinx-8.1.2/tests/test_config → sphinx-8.2.0/tests/roots/test-inheritance/dummy}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-inheritance/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/_templates/contents.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/bom.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/definition_terms.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/docfields.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/figure.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/glossary_terms.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/glossary_terms_inconsistency.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/i18n.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/index.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/index_entries.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/label_target.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/literalblock.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/markup.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/noqa.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/only.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/raw.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/refs.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/refs_inconsistency.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/refs_python_domain.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/role_xref.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/rubric.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/section.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/subdir/index.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/table.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/toctree.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/topic.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/translation_progress.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/versionchange.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/warnings.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/admonitions.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/bom.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/docfields.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/external_links.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/figure.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/footnote.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/index.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/index_entries.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/label_target.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/literalblock.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/markup.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/noqa.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/only.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/raw.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/refs.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/refs_inconsistency.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/refs_python_domain.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/role_xref.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/section.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/seealso.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/sphinx.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/table.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/toctree.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/topic.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/translation_progress.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/versionchange.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl/xx/LC_MESSAGES/warnings.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl_substitution_definitions/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl_substitution_definitions/i18n.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl_substitution_definitions/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl_substitution_definitions/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl_substitution_definitions/prolog_epilog_substitution.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl_substitution_definitions/prolog_epilog_substitution_excluded.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-intl_substitution_definitions/xx/LC_MESSAGES/prolog_epilog_substitution.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-keep_warnings/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-keep_warnings/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-babel/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-babel/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-babel/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-babel/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-latex-index → sphinx-8.2.0/tests/roots/test-latex-container}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-container/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-latex-labels → sphinx-8.2.0/tests/roots/test-latex-contents-topic-sidebar}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-contents-topic-sidebar/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-equations/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-equations/equations.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-equations/expects/latex-equations.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-figure-in-admonition/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-figure-in-admonition/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-figure-in-admonition/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-includegraphics/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-includegraphics/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-includegraphics/sphinx.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-includegraphics/tall.png +0 -0
- {sphinx-8.1.2/tests/roots/test-latex-table → sphinx-8.2.0/tests/roots/test-latex-index}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-index/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-latex-unicode → sphinx-8.2.0/tests/roots/test-latex-labels}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-labels/otherdoc.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-labels-before-module/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-labels-before-module/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-numfig/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-numfig/indexhowto.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-numfig/indexmanual.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/_mytemplates/latex/longtable.tex.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/_mytemplates/latex/tabulary.tex_t +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/complex.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-metadata → sphinx-8.2.0/tests/roots/test-latex-table}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/complex_spanning_cell.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/gridtable.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/gridtable_with_tabularcolumn.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_having_align.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_having_caption.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_having_problematic_cell.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_having_stub_columns_and_problematic_cell.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_having_verbatim.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_having_widths.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_having_widths_and_problematic_cell.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/longtable_with_tabularcolumn.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/simple_table.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/table_having_caption.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/table_having_problematic_cell.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/table_having_stub_columns_and_problematic_cell.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/table_having_threeparagraphs_cell_in_first_col.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/table_having_verbatim.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/table_having_widths.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/table_having_widths_and_problematic_cell.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/tabular_having_widths.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/tabularcolumn.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/expects/tabulary_having_widths.tex +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/longtable.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-table/tabular.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-theme/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-theme/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-theme/theme/custom/theme.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-title/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-nested-enumerated-list → sphinx-8.2.0/tests/roots/test-latex-unicode}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-latex-unicode/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck/links.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-anchors-ignore/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-anchors-ignore/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-anchors-ignore-for-url/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-anchors-ignore-for-url/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-documents_exclude/br0ken_link.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-documents_exclude/broken_link.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-documents_exclude/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-documents_exclude/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver-anchor/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver-anchor/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver-https/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver-https/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver-warn-redirects/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-localserver-warn-redirects/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-raw-node/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-too-many-retries/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-linkcheck-too-many-retries/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-local-logo/images/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-local-logo/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-locale/locale1/en/LC_MESSAGES/myext.mo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-locale/locale1/en/LC_MESSAGES/myext.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-locale/locale1/et/LC_MESSAGES/myext.mo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-locale/locale1/et/LC_MESSAGES/myext.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-locale/locale2/en/LC_MESSAGES/myext.mo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-locale/locale2/en/LC_MESSAGES/myext.po +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-manpage_url/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-manpage_url/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-markup-citation/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-markup-rubric/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-maxlistdepth/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-maxlistdepth/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-nested-tables → sphinx-8.2.0/tests/roots/test-metadata}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-metadata/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-need-escaped/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-need-escaped/baz.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-need-escaped/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-need-escaped/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-need-escaped/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-need-escaped/quux.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-need-escaped/qux.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-object-description-sections → sphinx-8.2.0/tests/roots/test-nested-enumerated-list}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-nested-enumerated-list/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-reST-code-block → sphinx-8.2.0/tests/roots/test-nested-tables}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-nested-tables/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-nitpicky-warnings/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-nitpicky-warnings/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numbered-circular/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numbered-circular/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numbered-circular/sub.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numfig/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numfig/baz.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numfig/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numfig/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numfig/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-numfig/rimg.png +0 -0
- {sphinx-8.1.2/tests/roots/test-reST-code-role → sphinx-8.2.0/tests/roots/test-object-description-sections}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-object-description-sections/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/Bare.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/Dup1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/Dup2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/LineContinuation.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/P1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/P2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/firstLineRule.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-productionlist/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-prolog/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-prolog/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-prolog/markdown.md +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-prolog/prolog_markdown_parser.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-prolog/restructuredtext.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-pycode/cp_1251_coded.py +0 -0
- {sphinx-8.1.2/tests/roots/test-smartquotes → sphinx-8.2.0/tests/roots/test-reST-code-block}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-reST-code-block/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-toctree-domain-objects → sphinx-8.2.0/tests/roots/test-reST-code-role}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-reST-code-role/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-refonly_bullet_list/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-refonly_bullet_list/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-remote-logo/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-roles-download/another/dummy.dat +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-roles-download/dummy.dat +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-roles-download/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/Makefile +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/_templates/contentssb.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/_templates/customsb.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/_templates/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/autodoc.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/bom.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/extapi.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/file_with_special_#_chars.xyz +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/images.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/img.foo.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/img.gif +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/img.pdf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/includes.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/lists.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/literal.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/literal_orig.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/markup.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/objects.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/otherext.foo +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/parsermod.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/quotes.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/rimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/special/api.h +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/subdir/excluded.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/subdir/images.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/subdir/img.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/subdir/include.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/subdir/includes.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/subdir/simg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/svgimg.pdf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/svgimg.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/tabs.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/test.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-root/wrongenc.inc +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-search/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-search/nosearch.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-search/tocitem.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-toctree-duplicated → sphinx-8.2.0/tests/roots/test-smartquotes}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-smartquotes/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-smartquotes/literals.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-stylesheets/_templates/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-stylesheets/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-templating/_templates/autosummary/class.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-templating/_templates/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-templating/autosummary_templating.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-templating/index.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/child.zip +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/parent.zip +0 -0
- {sphinx-8.1.2/tests/test_directives → sphinx-8.2.0/tests/roots/test-theming/test_theme}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/test_theme/staticfiles/layout.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/test_theme/staticfiles/static/legacytmpl.html_t +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/test_theme/staticfiles/static/staticimg.png +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/test_theme/staticfiles/static/statictmpl.html.jinja +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/test_theme/staticfiles/theme.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/test_theme/test-theme/theme.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-theming/ziptheme.zip +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-tocdepth/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-tocdepth/baz.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-tocdepth/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-tocdepth/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-tocdepth/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree/baz.rst +0 -0
- /sphinx-8.1.2/tests/test_domains/__init__.py → /sphinx-8.2.0/tests/roots/test-toctree/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree/quux.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree/qux.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree/tocdepth.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-toctree-index → sphinx-8.2.0/tests/roots/test-toctree-domain-objects}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-domain-objects/document_scoping.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-domain-objects/domains.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-domain-objects/index.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-toctree → sphinx-8.2.0/tests/roots/test-toctree-duplicated}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-duplicated/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-duplicated/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-empty/_templates/localtoc.html +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-empty/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-empty/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/bar/bar_1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/bar/bar_2.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/bar/bar_3.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/bar/bar_4/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/bar/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/baz.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/quux.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/qux/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/qux/qux_1.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-glob/qux/qux_2.rst +0 -0
- {sphinx-8.1.2/tests/roots/test-transforms-post_transforms-keyboard → sphinx-8.2.0/tests/roots/test-toctree-index}/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-index/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-index/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-maxdepth/bar.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-maxdepth/baz.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-maxdepth/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-maxdepth/foo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-maxdepth/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-maxdepth/qux.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-multiple-parents/alpha.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-multiple-parents/bravo.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-multiple-parents/charlie.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-multiple-parents/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-multiple-parents/delta.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-multiple-parents/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-toctree-multiple-parents/relation_graph.txt +0 -0
- /sphinx-8.1.2/tests/test_environment/__init__.py → /sphinx-8.2.0/tests/roots/test-transforms-post_transforms-keyboard/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-transforms-post_transforms-missing-reference/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-transforms-post_transforms-missing-reference/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-trim_doctest_flags/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-trim_doctest_flags/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-util-copyasset_overwrite/conf.py +0 -0
- /sphinx-8.1.2/tests/test_extensions/__init__.py → /sphinx-8.2.0/tests/roots/test-util-copyasset_overwrite/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-util-copyasset_overwrite/myext_static/custom-styles.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-util-copyasset_overwrite/user_static/custom-styles.css +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/added.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/deleted.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/deleted_end.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/index.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/insert.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/insert_beginning.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/insert_similar.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/modified.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-versioning/original.txt +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-warnings/conf.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-warnings/index.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-warnings/svgimg.pdf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-warnings/svgimg.svg +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-warnings/undecodable.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/roots/test-warnings/wrongenc.inc +0 -0
- {sphinx-8.1.2/tests/test_intl → sphinx-8.2.0/tests/test__cli}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_addnodes.py +0 -0
- {sphinx-8.1.2/tests/test_markup → sphinx-8.2.0/tests/test_builders}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_builders/conftest.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_builders/xpath_data.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_builders/xpath_html_util.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_builders/xpath_util.py +0 -0
- {sphinx-8.1.2/tests/test_pycode → sphinx-8.2.0/tests/test_config}/__init__.py +0 -0
- {sphinx-8.1.2/tests/test_theming → sphinx-8.2.0/tests/test_directives}/__init__.py +0 -0
- {sphinx-8.1.2/tests/test_transforms → sphinx-8.2.0/tests/test_domains}/__init__.py +0 -0
- {sphinx-8.1.2/tests/test_util → sphinx-8.2.0/tests/test_environment}/__init__.py +0 -0
- {sphinx-8.1.2/tests/test_writers → sphinx-8.2.0/tests/test_extensions}/__init__.py +0 -0
- {sphinx-8.1.2/utils → sphinx-8.2.0/tests/test_intl}/__init__.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_intl/test_locale.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_theming/theme.conf +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_theming/theme.toml +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_util/intersphinx_data.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/tests/test_util/typing_test_data.py +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/utils/CHANGES_template.rst +0 -0
- {sphinx-8.1.2 → sphinx-8.2.0}/utils/release-checklist.rst +0 -0
sphinx-8.2.0/AUTHORS.rst
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
Maintainers
|
|
2
|
+
===========
|
|
3
|
+
|
|
4
|
+
*Listed alphabetically in forename, surname order*
|
|
5
|
+
|
|
6
|
+
* Adam Turner <@AA-Turner>
|
|
7
|
+
* Bénédikt Tran <@picnixz>
|
|
8
|
+
* Chris Sewell <@chrisjsewell>
|
|
9
|
+
* François Freitag <@francoisfreitag>
|
|
10
|
+
* Jakob Lykke Andersen <@jakobandersen>
|
|
11
|
+
* Jean-François B. <@jfbu>
|
|
12
|
+
* Stephen Finucane <@stephenfin>
|
|
13
|
+
* Takayuki Shimizukawa <@shimizukawa>
|
|
14
|
+
* Takeshi Komiya <@tk0miya>
|
|
15
|
+
|
|
16
|
+
Contributors
|
|
17
|
+
============
|
|
18
|
+
|
|
19
|
+
*Listed alphabetically in forename, surname order*
|
|
20
|
+
|
|
21
|
+
* Aaron Carlisle -- basic theme and templating improvements
|
|
22
|
+
* Adam Dangoor -- improved static typing
|
|
23
|
+
* Adrián Chaves (Gallaecio) -- coverage builder improvements
|
|
24
|
+
* Alastair Houghton -- Apple Help builder
|
|
25
|
+
* Alex Gaynor -- linkcheck retry on errors
|
|
26
|
+
* Alexander Todorov -- inheritance_diagram tests and improvements
|
|
27
|
+
* Andi Albrecht -- agogo theme
|
|
28
|
+
* Antonio Valentino -- qthelp builder, docstring inheritance
|
|
29
|
+
* Antti Kaihola -- doctest extension (skipif option)
|
|
30
|
+
* Barry Warsaw -- setup command improvements
|
|
31
|
+
* Bart Kamphorst -- warning improvements
|
|
32
|
+
* Ben Egan -- Napoleon improvements & viewcode improvements
|
|
33
|
+
* Benjamin Peterson -- unittests
|
|
34
|
+
* Blaise Laflamme -- pyramid theme
|
|
35
|
+
* Brecht Machiels -- builder entry-points
|
|
36
|
+
* Bruce Mitchener -- Minor epub improvement
|
|
37
|
+
* Buck Evan -- dummy builder
|
|
38
|
+
* Charles Duffy -- original graphviz extension
|
|
39
|
+
* Chris Barrick -- Napoleon type preprocessing logic
|
|
40
|
+
* Chris Holdgraf -- improved documentation structure
|
|
41
|
+
* Chris Lamb -- reproducibility fixes
|
|
42
|
+
* Christopher Perkins -- autosummary integration
|
|
43
|
+
* Dan MacKinlay -- metadata fixes
|
|
44
|
+
* Daniel Bültmann -- todo extension
|
|
45
|
+
* Daniel Eades -- improved static typing
|
|
46
|
+
* Daniel Hahler -- testing and CI improvements
|
|
47
|
+
* Daniel Pizetta -- inheritance diagram improvements
|
|
48
|
+
* Dave Kuhlman -- original LaTeX writer
|
|
49
|
+
* Dimitri Papadopoulos Orfanos -- linting and spelling
|
|
50
|
+
* Dmitry Shachnev -- modernisation and reproducibility
|
|
51
|
+
* Doug Hellmann -- graphviz improvements
|
|
52
|
+
* Eric Larson -- better error messages
|
|
53
|
+
* Eric N. Vander Weele -- autodoc improvements
|
|
54
|
+
* Eric Wieser -- autodoc improvements
|
|
55
|
+
* Etienne Desautels -- apidoc module
|
|
56
|
+
* Ezio Melotti -- collapsible sidebar JavaScript
|
|
57
|
+
* Filip Vavera -- napoleon todo directive
|
|
58
|
+
* Glenn Matthews -- python domain signature improvements
|
|
59
|
+
* Gregory Szorc -- performance improvements
|
|
60
|
+
* Henrique Bastos -- SVG support for graphviz extension
|
|
61
|
+
* Hernan Grecco -- search improvements
|
|
62
|
+
* Hong Xu -- svg support in imgmath extension and various bug fixes
|
|
63
|
+
* Horst Gutmann -- internationalization support
|
|
64
|
+
* Hugo van Kemenade -- support FORCE_COLOR and NO_COLOR
|
|
65
|
+
* Ian Lee -- quickstart improvements
|
|
66
|
+
* Jacob Mason -- websupport library (GSOC project)
|
|
67
|
+
* James Addison -- linkcheck and HTML search improvements
|
|
68
|
+
* Jeppe Pihl -- literalinclude improvements
|
|
69
|
+
* Jeremy Maitin-Shepard -- C++ domain improvements
|
|
70
|
+
* Joel Wurtz -- cellspanning support in LaTeX
|
|
71
|
+
* John Waltman -- Texinfo builder
|
|
72
|
+
* Jon Dufresne -- modernisation
|
|
73
|
+
* Josip Dzolonga -- coverage builder
|
|
74
|
+
* Juan Luis Cano Rodríguez -- new tutorial (2021)
|
|
75
|
+
* Julien Palard -- Colspan and rowspan in text builder
|
|
76
|
+
* Justus Magin -- napoleon improvements
|
|
77
|
+
* Kevin Dunn -- MathJax extension
|
|
78
|
+
* KINEBUCHI Tomohiko -- typing Sphinx as well as docutils
|
|
79
|
+
* Kurt McKee -- documentation updates
|
|
80
|
+
* Lars Hupfeldt Nielsen - OpenSSL FIPS mode md5 bug fix
|
|
81
|
+
* Louis Maddox -- better docstrings
|
|
82
|
+
* Łukasz Langa -- partial support for autodoc
|
|
83
|
+
* Marco Buttu -- doctest extension (pyversion option)
|
|
84
|
+
* Martin Hans -- autodoc improvements
|
|
85
|
+
* Martin Larralde -- additional napoleon admonitions
|
|
86
|
+
* Martin Liška -- option directive and role improvements
|
|
87
|
+
* Martin Mahner -- nature theme
|
|
88
|
+
* Matthew Fernandez -- todo extension fix
|
|
89
|
+
* Matthew Woodcraft -- text output improvements
|
|
90
|
+
* Matthias Geier -- style improvements
|
|
91
|
+
* Michael Droettboom -- inheritance_diagram extension
|
|
92
|
+
* Michael Wilson -- Intersphinx HTTP basic auth support
|
|
93
|
+
* Nathan Damon -- bugfix in validation of static paths in html builders
|
|
94
|
+
* Nils Kattenbeck -- pygments dark style
|
|
95
|
+
* Pauli Virtanen -- autodoc improvements, autosummary extension
|
|
96
|
+
* Rafael Fontenelle -- internationalisation
|
|
97
|
+
* \A. Rafey Khan -- improved intersphinx typing
|
|
98
|
+
* Roland Meister -- epub builder
|
|
99
|
+
* Sebastian Wiesner -- image handling, distutils support
|
|
100
|
+
* Slawek Figiel -- additional warning suppression
|
|
101
|
+
* Stefan Seefeld -- toctree improvements
|
|
102
|
+
* Stefan van der Walt -- autosummary extension
|
|
103
|
+
* \T. Powers -- HTML output improvements
|
|
104
|
+
* Taku Shimizu -- epub3 builder
|
|
105
|
+
* Thomas Lamb -- linkcheck builder
|
|
106
|
+
* Thomas Waldmann -- apidoc module fixes
|
|
107
|
+
* Tim Hoffmann -- theme improvements
|
|
108
|
+
* Vince Salvino -- JavaScript search improvements
|
|
109
|
+
* Will Maier -- directory HTML builder
|
|
110
|
+
* Zac Hatfield-Dodds -- doctest reporting improvements, intersphinx performance
|
|
111
|
+
|
|
112
|
+
Former maintainers
|
|
113
|
+
==================
|
|
114
|
+
|
|
115
|
+
*Listed alphabetically in forename, surname order*
|
|
116
|
+
|
|
117
|
+
Former maintainers are those who haven't committed in the last two years.
|
|
118
|
+
Those on the list below may become active maintainers again at any time.
|
|
119
|
+
|
|
120
|
+
* Armin Ronacher <@mitsuhiko>
|
|
121
|
+
* Daniel Neuhäuser <@DasIch>
|
|
122
|
+
* Georg Brandl <georg@python.org>
|
|
123
|
+
* Rob Ruana <@RobRuana>
|
|
124
|
+
* Robert Lehmann <@lehmannro>
|
|
125
|
+
* Timotheus Kampik <@TimKam>
|
|
126
|
+
* Yoshiki Shibukawa <@shibukawa>
|
|
127
|
+
|
|
128
|
+
Many thanks for all contributions!
|
sphinx-8.2.0/CHANGES.rst
ADDED
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
Release 8.2.0 (released Feb 18, 2025)
|
|
2
|
+
=====================================
|
|
3
|
+
|
|
4
|
+
Dependencies
|
|
5
|
+
------------
|
|
6
|
+
|
|
7
|
+
* #13000: Drop Python 3.10 support.
|
|
8
|
+
|
|
9
|
+
Incompatible changes
|
|
10
|
+
--------------------
|
|
11
|
+
|
|
12
|
+
* #13044: Remove the internal and undocumented ``has_equations`` data
|
|
13
|
+
from the :py:class:`!MathDomain` domain.
|
|
14
|
+
The undocumented :py:meth:`!MathDomain.has_equations` method
|
|
15
|
+
now unconditionally returns ``True``.
|
|
16
|
+
These are replaced by the ``has_maths_elements`` key of the page context dict.
|
|
17
|
+
Patch by Adam Turner.
|
|
18
|
+
* #13227: HTML output for sequences of keys in the :rst:role:`kbd` role
|
|
19
|
+
no longer uses a ``<kbd class="kbd compound">`` element to wrap
|
|
20
|
+
the keys and separators, but places them directly in the relevant parent node.
|
|
21
|
+
This means that CSS rulesets targeting ``kbd.compound`` or ``.kbd.compound``
|
|
22
|
+
will no longer have any effect.
|
|
23
|
+
Patch by Adam Turner.
|
|
24
|
+
|
|
25
|
+
Deprecated
|
|
26
|
+
----------
|
|
27
|
+
|
|
28
|
+
* #13037: Deprecate the ``SingleHTMLBuilder.fix_refuris`` method.
|
|
29
|
+
Patch by James Addison.
|
|
30
|
+
* #13083, #13330: Un-deprecate ``sphinx.util.import_object``.
|
|
31
|
+
Patch by Matthias Geier.
|
|
32
|
+
|
|
33
|
+
Features added
|
|
34
|
+
--------------
|
|
35
|
+
|
|
36
|
+
* #13173: Add a new ``duplicate_declaration`` warning type,
|
|
37
|
+
with ``duplicate_declaration.c`` and ``duplicate_declaration.cpp`` subtypes.
|
|
38
|
+
Patch by Julien Lecomte and Adam Turner.
|
|
39
|
+
* #11824: linkcode: Allow extensions to add support for a domain by defining
|
|
40
|
+
the keys that should be present.
|
|
41
|
+
Patch by Nicolas Peugnet.
|
|
42
|
+
* #13144: Add a ``class`` option to the :rst:dir:`autosummary` directive.
|
|
43
|
+
Patch by Tim Hoffmann.
|
|
44
|
+
* #13146: Napoleon: Unify the type preprocessing logic to allow
|
|
45
|
+
Google-style docstrings to use the optional and default keywords.
|
|
46
|
+
Patch by Chris Barrick.
|
|
47
|
+
* #13227: Implement the :rst:role:`kbd` role as a ``SphinxRole``.
|
|
48
|
+
Patch by Adam Turner.
|
|
49
|
+
* #13065: Enable colour by default in when running on CI.
|
|
50
|
+
Patch by Adam Turner.
|
|
51
|
+
* #13230: Allow supressing warnings from the :rst:dir:`toctree` directive
|
|
52
|
+
when a glob pattern doesn't match any documents,
|
|
53
|
+
via the new ``toc.empty_glob`` warning sub-type.
|
|
54
|
+
Patch by Slawek Figiel.
|
|
55
|
+
* #9732: Add the new ``autodoc.mocked_object`` warnings sub-type.
|
|
56
|
+
Patch by Cyril Roelandt.
|
|
57
|
+
* #7630, #4824: autodoc: Use :file:`.pyi` type stub files
|
|
58
|
+
to auto-document native modules.
|
|
59
|
+
Patch by Adam Turner, partially based on work by Allie Fitter.
|
|
60
|
+
* #12975: Enable configuration of trailing commas in multi-line signatures
|
|
61
|
+
in the Python and Javascript domains, via the new
|
|
62
|
+
:confval:`python_trailing_comma_in_multi_line_signatures` and
|
|
63
|
+
:confval:`javascript_trailing_comma_in_multi_line_signatures`
|
|
64
|
+
configuration options.
|
|
65
|
+
* #13264: Rename the :rst:dir:`math` directive's ``nowrap`` option
|
|
66
|
+
to :rst:dir:`math:no-wrap`.
|
|
67
|
+
Patch by Adam Turner.
|
|
68
|
+
* #13269: Added the option to disable the use of type comments in
|
|
69
|
+
via the new :confval:`autodoc_use_type_comments` option,
|
|
70
|
+
which defaults to ``True`` for backwards compatibility.
|
|
71
|
+
The default will change to ``False`` in Sphinx 10.
|
|
72
|
+
Patch by Adam Turner.
|
|
73
|
+
* #9732: Add the new ``ref.any`` warnings sub-type
|
|
74
|
+
to allow suppressing the ambiguous 'any' cross-reference warning.
|
|
75
|
+
Patch by Simão Afonso and Adam Turner.
|
|
76
|
+
* #13272: The Python and JavaScript module directives now support
|
|
77
|
+
the ``:no-index-entry:`` option.
|
|
78
|
+
Patch by Adam Turner.
|
|
79
|
+
* #12233: autodoc: Allow directives to use ``:no-index-entry:``
|
|
80
|
+
and include the ``:no-index:`` and ``:no-index-entry:`` options within
|
|
81
|
+
:confval:`autodoc_default_options`.
|
|
82
|
+
Patch by Jonny Saunders and Adam Turner.
|
|
83
|
+
* #13172: Add support for short signatures in autosummary.
|
|
84
|
+
Patch by Tim Hoffmann.
|
|
85
|
+
* #13271: Change the signature prefix for abstract methods
|
|
86
|
+
in the Python domain to *abstractmethod* from *abstract*.
|
|
87
|
+
Patch by Adam Turner.
|
|
88
|
+
* #13271: Support the ``:abstract:`` option for
|
|
89
|
+
classes, methods, and properties in the Python domain.
|
|
90
|
+
Patch by Adam Turner.
|
|
91
|
+
* #12507: Add the :ref:`collapsible <collapsible-admonitions>` option
|
|
92
|
+
to admonition directives.
|
|
93
|
+
Patch by Chris Sewell.
|
|
94
|
+
* #8191, #8159: Add :rst:dir:`inheritance-diagram:include-subclasses` option to
|
|
95
|
+
the :rst:dir:`inheritance-diagram` directive.
|
|
96
|
+
Patch by Walter Dörwald.
|
|
97
|
+
* #11995: autodoc: Add support for :confval:`python_display_short_literal_types`.
|
|
98
|
+
Patch by Bénédikt Tran and Adam Turner.
|
|
99
|
+
* #13163: Always print the full context when Sphinx encounters an internal error.
|
|
100
|
+
Patch by Kevin Deldycke and Adam Turner.
|
|
101
|
+
* #13105: Introduce the :rst:role:`py:deco` role to cross-reference decorator
|
|
102
|
+
functions and methods in the Python domain.
|
|
103
|
+
Patch by Adam Turner.
|
|
104
|
+
* #9169: Add the :confval:`intersphinx_resolve_self` option
|
|
105
|
+
to resolve an intersphinx reference to the current project.
|
|
106
|
+
Patch by Jakob Lykke Andersen and Adam Turner.
|
|
107
|
+
* #11280: Add ability to skip a particular section using the ``no-search`` class.
|
|
108
|
+
Patch by Will Lachance.
|
|
109
|
+
* #13326: Remove hardcoding from handling :class:`~sphinx.addnodes.productionlist`
|
|
110
|
+
nodes in all writers, to improve flexibility.
|
|
111
|
+
Patch by Adam Turner.
|
|
112
|
+
* #13335: Use ``misc.highlighting_failure`` subtype for Pygments unknown lexers.
|
|
113
|
+
Patch by Bart Kamphorst.
|
|
114
|
+
* #13354: Insert abbreviation nodes (hover text) for positional- and keyword-only
|
|
115
|
+
separators in Python signatures.
|
|
116
|
+
Patch by Adam Turner.
|
|
117
|
+
* #13333: Add the :mod:`sphinx.ext.apidoc` extension,
|
|
118
|
+
to automate API documentation generation from Python modules.
|
|
119
|
+
Patch by Chris Sewell and Adam Turner.
|
|
120
|
+
|
|
121
|
+
Bugs fixed
|
|
122
|
+
----------
|
|
123
|
+
|
|
124
|
+
* #12463: autosummary: Respect an empty module ``__all__``.
|
|
125
|
+
Patch by Valentin Pratz
|
|
126
|
+
* #13060: HTML Search: use ``Map`` to store per-file term scores.
|
|
127
|
+
Patch by James Addison
|
|
128
|
+
* #13130: LaTeX docs: ``pdflatex`` index creation may fail for index entries
|
|
129
|
+
in French. See :confval:`latex_use_xindy`.
|
|
130
|
+
Patch by Jean-François B.
|
|
131
|
+
* #13152: LaTeX: fix a typo from v7.4.0 in a default for ``\sphinxboxsetup``.
|
|
132
|
+
Patch by Jean-François B.
|
|
133
|
+
* #13096: HTML Search: check that query terms exist as properties in
|
|
134
|
+
term indices before accessing them.
|
|
135
|
+
* #11233: linkcheck: match redirect URIs against :confval:`linkcheck_ignore` by
|
|
136
|
+
overriding session-level ``requests.get_redirect_target``.
|
|
137
|
+
* #13195: viewcode: Fix issue where import paths differ from the directory
|
|
138
|
+
structure.
|
|
139
|
+
Patch by Ben Egan and Adam Turner.
|
|
140
|
+
* #13188: autodoc: fix detection of class methods implemented in C.
|
|
141
|
+
Patch by Bénédikt Tran.
|
|
142
|
+
* #1810: Always copy static files when building, regardless of whether
|
|
143
|
+
any documents have changed since the previous build.
|
|
144
|
+
Patch by Adam Turner.
|
|
145
|
+
* #13201: autodoc: fix ordering of members when using ``groupwise``
|
|
146
|
+
for :confval:`autodoc_member_order`. Class methods are now rendered
|
|
147
|
+
before static methods, which themselves are rendered before regular
|
|
148
|
+
methods and attributes.
|
|
149
|
+
Patch by Bénédikt Tran.
|
|
150
|
+
* #12975: Avoid rendering a trailing comma in C and C++ multi-line signatures.
|
|
151
|
+
* #13178: autodoc: Fix resolution for ``pathlib`` types.
|
|
152
|
+
Patch by Adam Turner.
|
|
153
|
+
* #13136: autodoc: Correctly handle multiple inheritance.
|
|
154
|
+
Patch by Pavel Holica
|
|
155
|
+
* #13273, #13318: Properly convert command-line overrides for Boolean types.
|
|
156
|
+
Patch by Adam Turner.
|
|
157
|
+
* #13302, #13319: Use the correct indentation for continuation lines
|
|
158
|
+
in :rst:dir:`productionlist` directives.
|
|
159
|
+
Patch by Adam Turner.
|
|
160
|
+
* #13328: Fix parsing of PEP 695 functions with return annotations.
|
|
161
|
+
Patch by Bénédikt Tran. Initial work by Arash Badie-Modiri.
|
|
162
|
+
|
|
163
|
+
Testing
|
|
164
|
+
-------
|
|
165
|
+
|
|
166
|
+
* #13224: Correctness fixup for ``test_html_multi_line_copyright``.
|
|
167
|
+
Patch by Colin Watson, applied by James Addison.
|
sphinx-8.2.0/LICENSE.rst
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
License for Sphinx
|
|
2
|
+
==================
|
|
3
|
+
|
|
4
|
+
Unless otherwise indicated, all code in the Sphinx project is licenced under the
|
|
5
|
+
two clause BSD licence below.
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2007-2025 by the Sphinx team (see AUTHORS file).
|
|
8
|
+
All rights reserved.
|
|
9
|
+
|
|
10
|
+
Redistribution and use in source and binary forms, with or without
|
|
11
|
+
modification, are permitted provided that the following conditions are
|
|
12
|
+
met:
|
|
13
|
+
|
|
14
|
+
* Redistributions of source code must retain the above copyright
|
|
15
|
+
notice, this list of conditions and the following disclaimer.
|
|
16
|
+
|
|
17
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
18
|
+
notice, this list of conditions and the following disclaimer in the
|
|
19
|
+
documentation and/or other materials provided with the distribution.
|
|
20
|
+
|
|
21
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
22
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
23
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
24
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
25
|
+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
26
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
27
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
28
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
29
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
30
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
31
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
sphinx-8.2.0/PKG-INFO
ADDED
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: Sphinx
|
|
3
|
+
Version: 8.2.0
|
|
4
|
+
Summary: Python documentation generator
|
|
5
|
+
Author-email: Adam Turner <aa-turner@users.noreply.github.com>, Georg Brandl <georg@python.org>
|
|
6
|
+
Requires-Python: >=3.11
|
|
7
|
+
Description-Content-Type: text/x-rst
|
|
8
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
9
|
+
Classifier: Environment :: Console
|
|
10
|
+
Classifier: Environment :: Web Environment
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: Intended Audience :: Education
|
|
13
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
14
|
+
Classifier: Intended Audience :: Information Technology
|
|
15
|
+
Classifier: Intended Audience :: Other Audience
|
|
16
|
+
Classifier: Intended Audience :: Science/Research
|
|
17
|
+
Classifier: Intended Audience :: System Administrators
|
|
18
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Classifier: Programming Language :: Python
|
|
21
|
+
Classifier: Programming Language :: Python :: 3
|
|
22
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
27
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
28
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
29
|
+
Classifier: Framework :: Sphinx
|
|
30
|
+
Classifier: Framework :: Sphinx :: Domain
|
|
31
|
+
Classifier: Framework :: Sphinx :: Extension
|
|
32
|
+
Classifier: Framework :: Sphinx :: Theme
|
|
33
|
+
Classifier: Topic :: Documentation
|
|
34
|
+
Classifier: Topic :: Documentation :: Sphinx
|
|
35
|
+
Classifier: Topic :: Education
|
|
36
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
|
|
37
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking
|
|
38
|
+
Classifier: Topic :: Printing
|
|
39
|
+
Classifier: Topic :: Software Development
|
|
40
|
+
Classifier: Topic :: Software Development :: Documentation
|
|
41
|
+
Classifier: Topic :: Text Editors :: Documentation
|
|
42
|
+
Classifier: Topic :: Text Processing
|
|
43
|
+
Classifier: Topic :: Text Processing :: General
|
|
44
|
+
Classifier: Topic :: Text Processing :: Indexing
|
|
45
|
+
Classifier: Topic :: Text Processing :: Markup
|
|
46
|
+
Classifier: Topic :: Text Processing :: Markup :: HTML
|
|
47
|
+
Classifier: Topic :: Text Processing :: Markup :: LaTeX
|
|
48
|
+
Classifier: Topic :: Text Processing :: Markup :: Markdown
|
|
49
|
+
Classifier: Topic :: Text Processing :: Markup :: reStructuredText
|
|
50
|
+
Classifier: Topic :: Text Processing :: Markup :: XML
|
|
51
|
+
Classifier: Topic :: Utilities
|
|
52
|
+
Classifier: Typing :: Typed
|
|
53
|
+
Requires-Dist: sphinxcontrib-applehelp>=1.0.7
|
|
54
|
+
Requires-Dist: sphinxcontrib-devhelp>=1.0.6
|
|
55
|
+
Requires-Dist: sphinxcontrib-htmlhelp>=2.0.6
|
|
56
|
+
Requires-Dist: sphinxcontrib-jsmath>=1.0.1
|
|
57
|
+
Requires-Dist: sphinxcontrib-qthelp>=1.0.6
|
|
58
|
+
Requires-Dist: sphinxcontrib-serializinghtml>=1.1.9
|
|
59
|
+
Requires-Dist: Jinja2>=3.1
|
|
60
|
+
Requires-Dist: Pygments>=2.17
|
|
61
|
+
Requires-Dist: docutils>=0.20,<0.22
|
|
62
|
+
Requires-Dist: snowballstemmer>=2.2
|
|
63
|
+
Requires-Dist: babel>=2.13
|
|
64
|
+
Requires-Dist: alabaster>=0.7.14
|
|
65
|
+
Requires-Dist: imagesize>=1.3
|
|
66
|
+
Requires-Dist: requests>=2.30.0
|
|
67
|
+
Requires-Dist: roman-numerals-py>=1.0.0
|
|
68
|
+
Requires-Dist: packaging>=23.0
|
|
69
|
+
Requires-Dist: colorama>=0.4.6; sys_platform == 'win32'
|
|
70
|
+
Requires-Dist: sphinxcontrib-websupport ; extra == "docs"
|
|
71
|
+
Requires-Dist: ruff==0.9.6 ; extra == "lint"
|
|
72
|
+
Requires-Dist: mypy==1.15.0 ; extra == "lint"
|
|
73
|
+
Requires-Dist: sphinx-lint>=0.9 ; extra == "lint"
|
|
74
|
+
Requires-Dist: types-colorama==0.4.15.20240311 ; extra == "lint"
|
|
75
|
+
Requires-Dist: types-defusedxml==0.7.0.20240218 ; extra == "lint"
|
|
76
|
+
Requires-Dist: types-docutils==0.21.0.20241128 ; extra == "lint"
|
|
77
|
+
Requires-Dist: types-Pillow==10.2.0.20240822 ; extra == "lint"
|
|
78
|
+
Requires-Dist: types-Pygments==2.19.0.20250107 ; extra == "lint"
|
|
79
|
+
Requires-Dist: types-requests==2.32.0.20241016 ; extra == "lint"
|
|
80
|
+
Requires-Dist: types-urllib3==1.26.25.14 ; extra == "lint"
|
|
81
|
+
Requires-Dist: pyright==1.1.394 ; extra == "lint"
|
|
82
|
+
Requires-Dist: pytest>=8.0 ; extra == "lint"
|
|
83
|
+
Requires-Dist: pypi-attestations==0.0.21 ; extra == "lint"
|
|
84
|
+
Requires-Dist: betterproto==2.0.0b6 ; extra == "lint"
|
|
85
|
+
Requires-Dist: pytest>=8.0 ; extra == "test"
|
|
86
|
+
Requires-Dist: pytest-xdist[psutil]>=3.4 ; extra == "test"
|
|
87
|
+
Requires-Dist: defusedxml>=0.7.1 ; extra == "test"
|
|
88
|
+
Requires-Dist: cython>=3.0 ; extra == "test"
|
|
89
|
+
Requires-Dist: setuptools>=70.0 ; extra == "test"
|
|
90
|
+
Requires-Dist: typing_extensions>=4.9 ; extra == "test"
|
|
91
|
+
Project-URL: Changelog, https://www.sphinx-doc.org/en/master/changes.html
|
|
92
|
+
Project-URL: Code, https://github.com/sphinx-doc/sphinx
|
|
93
|
+
Project-URL: Documentation, https://www.sphinx-doc.org/
|
|
94
|
+
Project-URL: Download, https://pypi.org/project/Sphinx/
|
|
95
|
+
Project-URL: Homepage, https://www.sphinx-doc.org/
|
|
96
|
+
Project-URL: Issue tracker, https://github.com/sphinx-doc/sphinx/issues
|
|
97
|
+
Provides-Extra: docs
|
|
98
|
+
Provides-Extra: lint
|
|
99
|
+
Provides-Extra: test
|
|
100
|
+
|
|
101
|
+
========
|
|
102
|
+
Sphinx
|
|
103
|
+
========
|
|
104
|
+
|
|
105
|
+
.. image:: https://img.shields.io/pypi/v/sphinx.svg
|
|
106
|
+
:target: https://pypi.org/project/Sphinx/
|
|
107
|
+
:alt: Package on PyPI
|
|
108
|
+
|
|
109
|
+
.. image:: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml/badge.svg
|
|
110
|
+
:target: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml
|
|
111
|
+
:alt: Build Status
|
|
112
|
+
|
|
113
|
+
.. image:: https://readthedocs.org/projects/sphinx/badge/?version=master
|
|
114
|
+
:target: https://www.sphinx-doc.org/
|
|
115
|
+
:alt: Documentation Status
|
|
116
|
+
|
|
117
|
+
.. image:: https://img.shields.io/badge/License-BSD%202--Clause-blue.svg
|
|
118
|
+
:target: https://opensource.org/licenses/BSD-2-Clause
|
|
119
|
+
:alt: BSD 2 Clause
|
|
120
|
+
|
|
121
|
+
**Sphinx makes it easy to create intelligent and beautiful documentation.**
|
|
122
|
+
|
|
123
|
+
Sphinx uses reStructuredText as its markup language, and many of its strengths
|
|
124
|
+
come from the power and straightforwardness of reStructuredText and its parsing
|
|
125
|
+
and translating suite, the Docutils.
|
|
126
|
+
|
|
127
|
+
Features
|
|
128
|
+
========
|
|
129
|
+
|
|
130
|
+
* **Output formats**: HTML, PDF, plain text, EPUB, TeX, manual pages, and more
|
|
131
|
+
* **Extensive cross-references**: semantic markup and automatic links
|
|
132
|
+
for functions, classes, glossary terms and similar pieces of information
|
|
133
|
+
* **Hierarchical structure**: easy definition of a document tree, with automatic
|
|
134
|
+
links to siblings, parents and children
|
|
135
|
+
* **Automatic indices**: general index as well as a module index
|
|
136
|
+
* **Code highlighting**: automatic highlighting using the Pygments highlighter
|
|
137
|
+
* **Templating**: Flexible HTML output using the Jinja 2 templating engine
|
|
138
|
+
* **Extension ecosystem**: Many extensions are available, for example for
|
|
139
|
+
automatic function documentation or working with Jupyter notebooks.
|
|
140
|
+
* **Language Support**: Python, C, C++, JavaScript, mathematics, and many other
|
|
141
|
+
languages through extensions.
|
|
142
|
+
|
|
143
|
+
For more information, refer to `the documentation`_.
|
|
144
|
+
|
|
145
|
+
Installation
|
|
146
|
+
============
|
|
147
|
+
|
|
148
|
+
The following command installs Sphinx from the `Python Package Index`_. You will
|
|
149
|
+
need a working installation of Python and pip.
|
|
150
|
+
|
|
151
|
+
.. code-block:: shell
|
|
152
|
+
|
|
153
|
+
pip install -U sphinx
|
|
154
|
+
|
|
155
|
+
Contributing
|
|
156
|
+
============
|
|
157
|
+
|
|
158
|
+
We appreciate all contributions! Refer to `the contributors guide`_ for
|
|
159
|
+
information.
|
|
160
|
+
|
|
161
|
+
.. _the documentation: https://www.sphinx-doc.org/
|
|
162
|
+
.. _the contributors guide: https://www.sphinx-doc.org/en/master/internals/contributing.html
|
|
163
|
+
.. _Python Package Index: https://pypi.org/project/Sphinx/
|
|
164
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
digraph phases {
|
|
2
|
+
|
|
3
|
+
graph [
|
|
4
|
+
rankdir = LR
|
|
5
|
+
]
|
|
6
|
+
|
|
7
|
+
node [
|
|
8
|
+
shape = rect;
|
|
9
|
+
style = filled;
|
|
10
|
+
fillcolor ="#f7f7f7";
|
|
11
|
+
fontcolor = "#0a507a"
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
Initialization -> Reading;
|
|
15
|
+
Reading -> "Consistency checks";
|
|
16
|
+
"Consistency checks" -> Resolving;
|
|
17
|
+
Resolving -> Writing;
|
|
18
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="application/ecmascript" contentStyleType="text/css" height="223px" preserveAspectRatio="none" style="width:637px;height:223px;" version="1.1" viewBox="0 0 637 223" width="637px" zoomAndPan="magnify"><defs><filter height="300%" id="fh7abla96c8rb" width="300%" x="-1" y="-1"><feGaussianBlur result="blurOut" stdDeviation="2.0"/><feColorMatrix in="blurOut" result="blurOut2" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .4 0"/><feOffset dx="4.0" dy="4.0" in="blurOut2" result="blurOut3"/><feBlend in="SourceGraphic" in2="blurOut3" mode="normal"/></filter></defs><g><!--MD5=[631d54569d64dd7be7afb1602a233020]
|
|
2
|
+
entity SphinxProject--><polygon fill="#FEFECE" filter="url(#fh7abla96c8rb)" points="6,30.5,6,66.7969,120,66.7969,120,40.5,110,30.5,6,30.5" style="stroke: #000000; stroke-width: 1.5;"/><path d="M110,30.5 L110,40.5 L120,40.5 " fill="#FEFECE" style="stroke: #000000; stroke-width: 1.5;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="94" x="16" y="53.4951">SphinxProject</text><!--MD5=[61096c0d57626e43fed95496d4441932]
|
|
3
|
+
entity .rst--><polygon fill="#FEFECE" filter="url(#fh7abla96c8rb)" points="155,30.5,155,66.7969,197,66.7969,197,40.5,187,30.5,155,30.5" style="stroke: #000000; stroke-width: 1.5;"/><path d="M187,30.5 L187,40.5 L197,40.5 " fill="#FEFECE" style="stroke: #000000; stroke-width: 1.5;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="22" x="165" y="53.4951">.rst</text><!--MD5=[08ed079d9b091f9ed2d220f9f6abc033]
|
|
4
|
+
entity .pot--><path d="M359.5,36 C359.5,26 383,26 383,26 C383,26 406.5,26 406.5,36 L406.5,61.2969 C406.5,71.2969 383,71.2969 383,71.2969 C383,71.2969 359.5,71.2969 359.5,61.2969 L359.5,36 " fill="#FEFECE" filter="url(#fh7abla96c8rb)" style="stroke: #000000; stroke-width: 1.5;"/><path d="M359.5,36 C359.5,46 383,46 383,46 C383,46 406.5,46 406.5,36 " fill="none" style="stroke: #000000; stroke-width: 1.5;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="27" x="369.5" y="62.9951">.pot</text><!--MD5=[66eca29884632d3929c321eae20b9288]
|
|
5
|
+
entity .po--><path d="M483,36 C483,26 504,26 504,26 C504,26 525,26 525,36 L525,61.2969 C525,71.2969 504,71.2969 504,71.2969 C504,71.2969 483,71.2969 483,61.2969 L483,36 " fill="#FEFECE" filter="url(#fh7abla96c8rb)" style="stroke: #000000; stroke-width: 1.5;"/><path d="M483,36 C483,46 504,46 504,46 C504,46 525,46 525,36 " fill="none" style="stroke: #000000; stroke-width: 1.5;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="22" x="493" y="62.9951">.po</text><!--MD5=[fad5092d1b513ed9e4cd2391fb0fb212]
|
|
6
|
+
entity .mo--><path d="M398,176 C398,166 421,166 421,166 C421,166 444,166 444,176 L444,201.2969 C444,211.2969 421,211.2969 421,211.2969 C421,211.2969 398,211.2969 398,201.2969 L398,176 " fill="#FEFECE" filter="url(#fh7abla96c8rb)" style="stroke: #000000; stroke-width: 1.5;"/><path d="M398,176 C398,186 421,186 421,186 C421,186 444,186 444,176 " fill="none" style="stroke: #000000; stroke-width: 1.5;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="26" x="408" y="202.9951">.mo</text><!--MD5=[8f276d451ff344d4b5b89d896332ffcd]
|
|
7
|
+
entity translator--><ellipse cx="593" cy="17.5" fill="#FEFECE" filter="url(#fh7abla96c8rb)" rx="8" ry="8" style="stroke: #A80036; stroke-width: 1.5;"/><path d="M593,25.5 L593,52.5 M580,33.5 L606,33.5 M593,52.5 L580,67.5 M593,52.5 L606,67.5 " fill="none" filter="url(#fh7abla96c8rb)" style="stroke: #A80036; stroke-width: 1.5;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="65" x="560.5" y="85.9951">translator</text><!--MD5=[ba0f3816bcb6df458d88626e193b44ee]
|
|
8
|
+
entity TranslatedBuild--><polygon fill="#FEFECE" filter="url(#fh7abla96c8rb)" points="214.5,170.5,214.5,206.7969,341.5,206.7969,341.5,180.5,331.5,170.5,214.5,170.5" style="stroke: #000000; stroke-width: 1.5;"/><path d="M331.5,170.5 L331.5,180.5 L341.5,180.5 " fill="#FEFECE" style="stroke: #000000; stroke-width: 1.5;"/><text fill="#000000" font-family="sans-serif" font-size="14" lengthAdjust="spacingAndGlyphs" textLength="107" x="224.5" y="193.4951">TranslatedBuild</text><!--MD5=[2a0f0d8c54238b3eb600ae284aca39d2]
|
|
9
|
+
reverse link .po to translator--><path d="M530.44,48.5 C540.43,48.5 550.43,48.5 560.43,48.5 " fill="none" id=".po<-translator" style="stroke: #A80036; stroke-width: 1.0;"/><polygon fill="#A80036" points="525.21,48.5,534.21,52.5,530.21,48.5,534.21,44.5,525.21,48.5" style="stroke: #A80036; stroke-width: 1.0;"/><!--MD5=[25ad71f3d3609323ec521914d1dc498d]
|
|
10
|
+
link SphinxProject to .rst--><path d="M120.38,48.5 C130.13,48.5 139.87,48.5 149.61,48.5 " fill="none" id="SphinxProject->.rst" style="stroke: #A80036; stroke-width: 1.0;"/><polygon fill="#A80036" points="154.71,48.5,145.71,44.5,149.71,48.5,145.71,52.5,154.71,48.5" style="stroke: #A80036; stroke-width: 1.0;"/><!--MD5=[1109e8764a7297dc8aca732b1794aa90]
|
|
11
|
+
link .rst to .pot--><path d="M197.37,48.5 C234.72,48.5 311.88,48.5 354,48.5 " fill="none" id=".rst->.pot" style="stroke: #A80036; stroke-width: 1.0;"/><polygon fill="#A80036" points="359.21,48.5,350.21,44.5,354.21,48.5,350.21,52.5,359.21,48.5" style="stroke: #A80036; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="126" x="215.25" y="41.5669">sphinx-build gettext</text><!--MD5=[c2d0ba229470f335ea07ab2ed6b28ec0]
|
|
12
|
+
link .pot to .po--><path d="M406.62,48.5 C427.03,48.5 456.51,48.5 477.68,48.5 " fill="none" id=".pot->.po" style="stroke: #A80036; stroke-width: 1.0;"/><polygon fill="#A80036" points="482.87,48.5,473.87,44.5,477.87,48.5,473.87,52.5,482.87,48.5" style="stroke: #A80036; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="40" x="424.75" y="41.5669">Pootle</text><!--MD5=[06651b5914fbf4764a077bbac7efe19a]
|
|
13
|
+
link .po to .mo--><path d="M491.03,71.06 C476.38,95.43 452.52,135.09 436.8,161.24 " fill="none" id=".po->.mo" style="stroke: #A80036; stroke-width: 1.0;"/><polygon fill="#A80036" points="434.15,165.63,442.2104,159.9705,436.7225,161.3425,435.3505,155.8546,434.15,165.63" style="stroke: #A80036; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="50" x="462" y="132.0669">msgfmt</text><!--MD5=[02fa75427086f2cebad4a5f1b2dd96dd]
|
|
14
|
+
reverse link TranslatedBuild to .mo--><path d="M346.94,188.5 C363.88,188.5 380.82,188.5 397.76,188.5 " fill="none" id="TranslatedBuild<-.mo" style="stroke: #A80036; stroke-width: 1.0;"/><polygon fill="#A80036" points="341.68,188.5,350.68,192.5,346.68,188.5,350.68,184.5,341.68,188.5" style="stroke: #A80036; stroke-width: 1.0;"/><!--MD5=[e72b6258a50343d4926d984a36170cf2]
|
|
15
|
+
link .rst to TranslatedBuild--><path d="M188.71,66.7 C207.27,91.8 241.75,138.46 262,165.86 " fill="none" id=".rst->TranslatedBuild" style="stroke: #A80036; stroke-width: 1.0;"/><polygon fill="#A80036" points="265.13,170.08,262.9905,160.4663,262.1552,166.0612,256.5604,165.226,265.13,170.08" style="stroke: #A80036; stroke-width: 1.0;"/><text fill="#000000" font-family="sans-serif" font-size="13" lengthAdjust="spacingAndGlyphs" textLength="165" x="241" y="132.0669">sphinx-build -Dlanguage=</text><!--MD5=[30dba34f254541587149d90abdb00688]
|
|
16
|
+
@startuml
|
|
17
|
+
file "SphinxProject"
|
|
18
|
+
file ".rst"
|
|
19
|
+
database ".pot"
|
|
20
|
+
database ".po"
|
|
21
|
+
database ".mo"
|
|
22
|
+
actor translator
|
|
23
|
+
file TranslatedBuild
|
|
24
|
+
translator -l-> .po
|
|
25
|
+
SphinxProject -r-> .rst
|
|
26
|
+
.rst -r-> .pot : sphinx-build gettext
|
|
27
|
+
.pot -r-> .po : Pootle
|
|
28
|
+
.po -d-> .mo : msgfmt
|
|
29
|
+
.mo -l-> TranslatedBuild
|
|
30
|
+
.rst -d-> TranslatedBuild : "sphinx-build -Dlanguage="
|
|
31
|
+
@enduml
|
|
32
|
+
|
|
33
|
+
PlantUML version 1.2020.00(Sat Jan 11 12:30:53 GMT 2020)
|
|
34
|
+
(GPL source distribution)
|
|
35
|
+
Java Runtime: OpenJDK Runtime Environment
|
|
36
|
+
JVM: OpenJDK 64-Bit Server VM
|
|
37
|
+
Java Version: 1.8.0_252-b09
|
|
38
|
+
Operating System: Linux
|
|
39
|
+
Default Encoding: UTF-8
|
|
40
|
+
Language: en
|
|
41
|
+
Country: null
|
|
42
|
+
--></g></svg>
|