Sphinx 8.0.2__py3-none-any.whl → 8.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Sphinx might be problematic. Click here for more details.
- sphinx/__init__.py +6 -3
- sphinx/_cli/__init__.py +40 -20
- sphinx/_cli/util/colour.py +5 -4
- sphinx/_cli/util/errors.py +28 -11
- sphinx/application.py +361 -38
- sphinx/builders/__init__.py +229 -83
- sphinx/builders/_epub_base.py +118 -71
- sphinx/builders/changes.py +39 -21
- sphinx/builders/dirhtml.py +4 -4
- sphinx/builders/dummy.py +2 -5
- sphinx/builders/epub3.py +43 -22
- sphinx/builders/gettext.py +43 -25
- sphinx/builders/html/__init__.py +284 -218
- sphinx/builders/html/_assets.py +62 -26
- sphinx/builders/html/_build_info.py +76 -0
- sphinx/builders/html/transforms.py +11 -9
- sphinx/builders/latex/__init__.py +139 -81
- sphinx/builders/latex/constants.py +7 -7
- sphinx/builders/latex/nodes.py +3 -2
- sphinx/builders/latex/theming.py +7 -5
- sphinx/builders/latex/transforms.py +27 -19
- sphinx/builders/linkcheck.py +146 -72
- sphinx/builders/manpage.py +30 -13
- sphinx/builders/singlehtml.py +22 -14
- sphinx/builders/texinfo.py +67 -37
- sphinx/builders/text.py +5 -5
- sphinx/builders/xml.py +6 -9
- sphinx/cmd/build.py +282 -103
- sphinx/cmd/make_mode.py +106 -63
- sphinx/cmd/quickstart.py +341 -145
- sphinx/config.py +45 -12
- sphinx/deprecation.py +8 -2
- sphinx/directives/__init__.py +28 -19
- sphinx/directives/code.py +86 -56
- sphinx/directives/other.py +50 -36
- sphinx/directives/patches.py +29 -19
- sphinx/domains/__init__.py +20 -120
- sphinx/domains/_domains_container.py +281 -0
- sphinx/domains/_index.py +110 -0
- sphinx/domains/c/__init__.py +3 -3
- sphinx/domains/c/_parser.py +10 -6
- sphinx/domains/changeset.py +5 -3
- sphinx/domains/citation.py +5 -3
- sphinx/domains/cpp/__init__.py +9 -11
- sphinx/domains/cpp/_parser.py +8 -7
- sphinx/domains/index.py +3 -3
- sphinx/domains/javascript.py +12 -7
- sphinx/domains/math.py +2 -2
- sphinx/domains/python/__init__.py +10 -5
- sphinx/domains/python/_object.py +1 -1
- sphinx/domains/rst.py +5 -5
- sphinx/domains/std/__init__.py +16 -11
- sphinx/environment/__init__.py +206 -146
- sphinx/environment/adapters/asset.py +3 -2
- sphinx/environment/adapters/indexentries.py +74 -33
- sphinx/environment/adapters/toctree.py +100 -43
- sphinx/environment/collectors/__init__.py +19 -8
- sphinx/environment/collectors/asset.py +47 -15
- sphinx/environment/collectors/dependencies.py +8 -4
- sphinx/environment/collectors/metadata.py +7 -2
- sphinx/environment/collectors/title.py +7 -2
- sphinx/environment/collectors/toctree.py +54 -22
- sphinx/errors.py +4 -1
- sphinx/events.py +314 -7
- sphinx/ext/apidoc.py +42 -18
- sphinx/ext/autodoc/__init__.py +52 -24
- sphinx/ext/autodoc/importer.py +6 -9
- sphinx/ext/autosectionlabel.py +1 -2
- sphinx/ext/autosummary/__init__.py +3 -1
- sphinx/ext/autosummary/generate.py +28 -14
- sphinx/ext/coverage.py +7 -7
- sphinx/ext/doctest.py +4 -8
- sphinx/ext/duration.py +6 -5
- sphinx/ext/inheritance_diagram.py +1 -1
- sphinx/ext/intersphinx/_cli.py +6 -4
- sphinx/ext/intersphinx/_load.py +77 -32
- sphinx/ext/intersphinx/_resolve.py +173 -79
- sphinx/ext/intersphinx/_shared.py +7 -5
- sphinx/ext/linkcode.py +7 -1
- sphinx/ext/mathjax.py +1 -2
- sphinx/ext/napoleon/__init__.py +37 -24
- sphinx/ext/napoleon/docstring.py +202 -134
- sphinx/ext/todo.py +5 -3
- sphinx/highlighting.py +9 -2
- sphinx/io.py +1 -1
- sphinx/jinja2glue.py +27 -6
- sphinx/locale/__init__.py +6 -2
- sphinx/locale/ar/LC_MESSAGES/sphinx.js +8 -1
- sphinx/locale/ar/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ar/LC_MESSAGES/sphinx.po +2246 -2288
- sphinx/locale/bg/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/bg/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/bg/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/bn/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/bn/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/bn/LC_MESSAGES/sphinx.po +2349 -2395
- sphinx/locale/ca/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/ca/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ca/LC_MESSAGES/sphinx.po +2846 -2892
- sphinx/locale/cak/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/cak/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/cak/LC_MESSAGES/sphinx.po +2213 -2259
- sphinx/locale/cs/LC_MESSAGES/sphinx.js +6 -1
- sphinx/locale/cs/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/cs/LC_MESSAGES/sphinx.po +2225 -2269
- sphinx/locale/cy/LC_MESSAGES/sphinx.js +6 -1
- sphinx/locale/cy/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/cy/LC_MESSAGES/sphinx.po +2403 -2447
- sphinx/locale/da/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/da/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/da/LC_MESSAGES/sphinx.po +2214 -2260
- sphinx/locale/de/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/de/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/de/LC_MESSAGES/sphinx.po +2230 -2276
- sphinx/locale/de_DE/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/de_DE/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/el/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/el/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/el/LC_MESSAGES/sphinx.po +2619 -2665
- sphinx/locale/en_DE/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/en_DE/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/en_FR/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/en_GB/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +2519 -2565
- sphinx/locale/en_HK/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/eo/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/eo/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/eo/LC_MESSAGES/sphinx.po +2232 -2278
- sphinx/locale/es/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/es/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/es/LC_MESSAGES/sphinx.po +2516 -2561
- sphinx/locale/es_CO/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/es_CO/LC_MESSAGES/sphinx.po +2114 -2159
- sphinx/locale/et/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/et/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/et/LC_MESSAGES/sphinx.po +2317 -2363
- sphinx/locale/eu/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/eu/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/eu/LC_MESSAGES/sphinx.po +2218 -2264
- sphinx/locale/fa/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/fa/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/fa/LC_MESSAGES/sphinx.po +2505 -2551
- sphinx/locale/fi/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/fi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/fi/LC_MESSAGES/sphinx.po +2303 -2349
- sphinx/locale/fr/LC_MESSAGES/sphinx.js +6 -2
- sphinx/locale/fr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/fr/LC_MESSAGES/sphinx.po +2863 -2908
- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +2114 -2159
- sphinx/locale/gl/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/gl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/gl/LC_MESSAGES/sphinx.po +2571 -2617
- sphinx/locale/he/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/he/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/he/LC_MESSAGES/sphinx.po +2307 -2352
- sphinx/locale/hi/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/hi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/hi/LC_MESSAGES/sphinx.po +2580 -2626
- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/hr/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/hr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/hr/LC_MESSAGES/sphinx.po +2238 -2283
- sphinx/locale/hu/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/hu/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/hu/LC_MESSAGES/sphinx.po +2228 -2274
- sphinx/locale/id/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/id/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/id/LC_MESSAGES/sphinx.po +2787 -2834
- sphinx/locale/is/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/is/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/is/LC_MESSAGES/sphinx.po +2224 -2270
- sphinx/locale/it/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/it/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/it/LC_MESSAGES/sphinx.po +2231 -2276
- sphinx/locale/ja/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/ja/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ja/LC_MESSAGES/sphinx.po +2507 -2554
- sphinx/locale/ka/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/ka/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ka/LC_MESSAGES/sphinx.po +2428 -2474
- sphinx/locale/ko/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/ko/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ko/LC_MESSAGES/sphinx.po +2516 -2563
- sphinx/locale/lt/LC_MESSAGES/sphinx.js +6 -1
- sphinx/locale/lt/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/lt/LC_MESSAGES/sphinx.po +2425 -2469
- sphinx/locale/lv/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/lv/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/lv/LC_MESSAGES/sphinx.po +2362 -2407
- sphinx/locale/mk/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/mk/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/mk/LC_MESSAGES/sphinx.po +2121 -2167
- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +2220 -2266
- sphinx/locale/ne/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/ne/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ne/LC_MESSAGES/sphinx.po +2221 -2267
- sphinx/locale/nl/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/nl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/nl/LC_MESSAGES/sphinx.po +2240 -2286
- sphinx/locale/pl/LC_MESSAGES/sphinx.js +6 -1
- sphinx/locale/pl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/pl/LC_MESSAGES/sphinx.po +2319 -2363
- sphinx/locale/pt/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/pt/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/pt/LC_MESSAGES/sphinx.po +2114 -2159
- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +2854 -2899
- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +2224 -2269
- sphinx/locale/ro/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/ro/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ro/LC_MESSAGES/sphinx.po +2226 -2271
- sphinx/locale/ru/LC_MESSAGES/sphinx.js +8 -3
- sphinx/locale/ru/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ru/LC_MESSAGES/sphinx.po +2841 -2885
- sphinx/locale/si/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/si/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/si/LC_MESSAGES/sphinx.po +2294 -2340
- sphinx/locale/sk/LC_MESSAGES/sphinx.js +6 -1
- sphinx/locale/sk/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/sk/LC_MESSAGES/sphinx.po +2497 -2541
- sphinx/locale/sl/LC_MESSAGES/sphinx.js +6 -1
- sphinx/locale/sl/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/sl/LC_MESSAGES/sphinx.po +2331 -2375
- sphinx/locale/sphinx.pot +2121 -2167
- sphinx/locale/sq/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/sq/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/sq/LC_MESSAGES/sphinx.po +2855 -2901
- sphinx/locale/sr/LC_MESSAGES/sphinx.js +5 -1
- sphinx/locale/sr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/sr/LC_MESSAGES/sphinx.po +2203 -2248
- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/sv/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/sv/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/sv/LC_MESSAGES/sphinx.po +2423 -2469
- sphinx/locale/te/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/te/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/te/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/tr/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/tr/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/tr/LC_MESSAGES/sphinx.po +2443 -2489
- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js +6 -1
- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +2329 -2373
- sphinx/locale/ur/LC_MESSAGES/sphinx.js +4 -1
- sphinx/locale/ur/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/ur/LC_MESSAGES/sphinx.po +2113 -2159
- sphinx/locale/vi/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/vi/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/vi/LC_MESSAGES/sphinx.po +2199 -2246
- sphinx/locale/yue/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/yue/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/yue/LC_MESSAGES/sphinx.po +2112 -2159
- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +2112 -2159
- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +2845 -2892
- sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js +3 -1
- sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo +0 -0
- sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +2112 -2159
- sphinx/parsers.py +3 -1
- sphinx/project.py +6 -2
- sphinx/pycode/__init__.py +11 -4
- sphinx/pycode/ast.py +58 -58
- sphinx/pycode/parser.py +49 -28
- sphinx/pygments_styles.py +49 -49
- sphinx/registry.py +8 -3
- sphinx/roles.py +133 -13
- sphinx/search/__init__.py +146 -87
- sphinx/search/da.py +2 -4
- sphinx/search/de.py +2 -4
- sphinx/search/en.py +4 -4
- sphinx/search/es.py +2 -4
- sphinx/search/fi.py +2 -4
- sphinx/search/fr.py +2 -4
- sphinx/search/hu.py +2 -4
- sphinx/search/it.py +2 -4
- sphinx/search/ja.py +55 -32
- sphinx/search/nl.py +2 -4
- sphinx/search/no.py +2 -4
- sphinx/search/pt.py +2 -4
- sphinx/search/ro.py +0 -2
- sphinx/search/ru.py +2 -4
- sphinx/search/sv.py +2 -4
- sphinx/search/tr.py +0 -2
- sphinx/search/zh.py +18 -13
- sphinx/templates/graphviz/graphviz.css +0 -7
- sphinx/testing/fixtures.py +6 -5
- sphinx/testing/path.py +7 -5
- sphinx/testing/util.py +63 -29
- sphinx/texinputs/sphinx.sty +107 -39
- sphinx/texinputs/sphinxlatexadmonitions.sty +51 -35
- sphinx/texinputs/sphinxlatexcontainers.sty +1 -1
- sphinx/texinputs/sphinxlatexgraphics.sty +3 -2
- sphinx/texinputs/sphinxlatexindbibtoc.sty +1 -1
- sphinx/texinputs/sphinxlatexlists.sty +1 -1
- sphinx/texinputs/sphinxlatexliterals.sty +4 -1
- sphinx/texinputs/sphinxlatexnumfig.sty +22 -9
- sphinx/texinputs/sphinxlatexobjects.sty +1 -1
- sphinx/texinputs/sphinxlatexshadowbox.sty +72 -10
- sphinx/texinputs/sphinxlatexstyleheadings.sty +7 -2
- sphinx/texinputs/sphinxlatexstylepage.sty +2 -8
- sphinx/texinputs/sphinxlatexstyletext.sty +2 -4
- sphinx/texinputs/sphinxlatextables.sty +1 -1
- sphinx/texinputs/sphinxoptionsgeometry.sty +1 -1
- sphinx/texinputs/sphinxoptionshyperref.sty +1 -1
- sphinx/themes/agogo/layout.html +1 -10
- sphinx/themes/agogo/static/agogo.css.jinja +0 -7
- sphinx/themes/basic/defindex.html +1 -8
- sphinx/themes/basic/domainindex.html +1 -9
- sphinx/themes/basic/genindex-single.html +1 -9
- sphinx/themes/basic/genindex-split.html +1 -9
- sphinx/themes/basic/genindex.html +1 -9
- sphinx/themes/basic/globaltoc.html +1 -9
- sphinx/themes/basic/layout.html +1 -9
- sphinx/themes/basic/localtoc.html +1 -9
- sphinx/themes/basic/page.html +1 -9
- sphinx/themes/basic/relations.html +1 -9
- sphinx/themes/basic/search.html +1 -9
- sphinx/themes/basic/searchbox.html +1 -9
- sphinx/themes/basic/searchfield.html +4 -10
- sphinx/themes/basic/sourcelink.html +1 -9
- sphinx/themes/basic/static/basic.css.jinja +2 -13
- sphinx/themes/basic/static/doctools.js +0 -7
- sphinx/themes/basic/static/language_data.js.jinja +0 -7
- sphinx/themes/basic/static/searchtools.js +25 -13
- sphinx/themes/bizstyle/layout.html +1 -9
- sphinx/themes/bizstyle/static/bizstyle.css.jinja +0 -7
- sphinx/themes/bizstyle/static/bizstyle.js.jinja +5 -11
- sphinx/themes/classic/layout.html +1 -9
- sphinx/themes/classic/static/classic.css.jinja +0 -7
- sphinx/themes/classic/static/sidebar.js.jinja +0 -6
- sphinx/themes/epub/epub-cover.html +1 -9
- sphinx/themes/epub/layout.html +1 -9
- sphinx/themes/epub/static/epub.css.jinja +0 -7
- sphinx/themes/haiku/layout.html +1 -9
- sphinx/themes/haiku/static/haiku.css.jinja +0 -6
- sphinx/themes/nature/static/nature.css.jinja +0 -7
- sphinx/themes/nonav/layout.html +1 -9
- sphinx/themes/nonav/static/nonav.css.jinja +0 -7
- sphinx/themes/pyramid/static/epub.css.jinja +0 -7
- sphinx/themes/pyramid/static/pyramid.css.jinja +0 -7
- sphinx/themes/scrolls/layout.html +1 -10
- sphinx/themes/scrolls/static/scrolls.css.jinja +0 -7
- sphinx/themes/sphinxdoc/static/sphinxdoc.css.jinja +2 -7
- sphinx/themes/traditional/static/traditional.css.jinja +0 -7
- sphinx/theming.py +18 -6
- sphinx/transforms/__init__.py +56 -35
- sphinx/transforms/compact_bullet_list.py +3 -2
- sphinx/transforms/i18n.py +132 -50
- sphinx/transforms/post_transforms/__init__.py +94 -43
- sphinx/transforms/post_transforms/code.py +7 -6
- sphinx/transforms/post_transforms/images.py +71 -54
- sphinx/transforms/references.py +1 -2
- sphinx/util/__init__.py +23 -194
- sphinx/util/_files.py +80 -0
- sphinx/util/_importer.py +27 -0
- sphinx/util/_io.py +1 -2
- sphinx/util/_lines.py +26 -0
- sphinx/util/_pathlib.py +5 -2
- sphinx/util/_serialise.py +53 -0
- sphinx/util/_timestamps.py +2 -1
- sphinx/util/_uri.py +16 -0
- sphinx/util/cfamily.py +48 -25
- sphinx/util/console.py +1 -0
- sphinx/util/display.py +1 -1
- sphinx/util/docfields.py +125 -45
- sphinx/util/docstrings.py +1 -1
- sphinx/util/docutils.py +118 -44
- sphinx/util/exceptions.py +11 -5
- sphinx/util/fileutil.py +53 -32
- sphinx/util/http_date.py +9 -7
- sphinx/util/i18n.py +49 -16
- sphinx/util/images.py +7 -6
- sphinx/util/inspect.py +29 -12
- sphinx/util/inventory.py +47 -29
- sphinx/util/logging.py +58 -85
- sphinx/util/matching.py +3 -3
- sphinx/util/math.py +1 -1
- sphinx/util/nodes.py +176 -108
- sphinx/util/osutil.py +13 -10
- sphinx/util/parallel.py +5 -4
- sphinx/util/parsing.py +5 -3
- sphinx/util/png.py +3 -3
- sphinx/util/requests.py +8 -4
- sphinx/util/rst.py +5 -3
- sphinx/util/tags.py +5 -2
- sphinx/util/template.py +26 -11
- sphinx/util/texescape.py +2 -2
- sphinx/util/typing.py +89 -38
- sphinx/versioning.py +3 -1
- sphinx/writers/html.py +22 -7
- sphinx/writers/html5.py +113 -64
- sphinx/writers/latex.py +408 -221
- sphinx/writers/manpage.py +25 -15
- sphinx/writers/texinfo.py +94 -82
- sphinx/writers/text.py +87 -53
- sphinx/writers/xml.py +5 -4
- sphinx-8.1.0.dist-info/LICENSE.rst +31 -0
- {sphinx-8.0.2.dist-info → sphinx-8.1.0.dist-info}/METADATA +13 -11
- sphinx-8.1.0.dist-info/RECORD +598 -0
- sphinx-8.0.2.dist-info/LICENSE.rst +0 -67
- sphinx-8.0.2.dist-info/RECORD +0 -590
- {sphinx-8.0.2.dist-info → sphinx-8.1.0.dist-info}/WHEEL +0 -0
- {sphinx-8.0.2.dist-info → sphinx-8.1.0.dist-info}/entry_points.txt +0 -0
sphinx-8.0.2.dist-info/RECORD
DELETED
|
@@ -1,590 +0,0 @@
|
|
|
1
|
-
sphinx/__init__.py,sha256=75IEpuG5UkLNQriiTP_7urbQcIu4jwwT001vCbgmTzY,1690
|
|
2
|
-
sphinx/__main__.py,sha256=wIifwXlZHdi4gtQmkJ6KF0BsflvD9o0Wd5nARTdJc8A,127
|
|
3
|
-
sphinx/addnodes.py,sha256=EQTIi9Zta6DaNa-2WGE3l9AVjdp7WzwwrfwRnax8vXE,18707
|
|
4
|
-
sphinx/application.py,sha256=yhOkhP56wzskzmi5sjiAEqt1i_AE4jLGWDeWkLPvvZ0,57793
|
|
5
|
-
sphinx/config.py,sha256=bd6hzDXFvYKPvfA2fzH2hu2HxVXK6bz1m2DnrFn3x1c,31193
|
|
6
|
-
sphinx/deprecation.py,sha256=E8lNCClHC1Mt2IiXNYp5oULqukUjfvSnHqUmDXfvobw,2438
|
|
7
|
-
sphinx/errors.py,sha256=mFyE7P1fmnVTeYtpP3wv8oXrKyTw1H0WcE46VypUPd0,3412
|
|
8
|
-
sphinx/events.py,sha256=rZkchR3dFN54FG5pc4k9yrImicSCmjOHyoJd187R4sM,4415
|
|
9
|
-
sphinx/extension.py,sha256=F4AZzY3BAVRXaeE3p0CYFM4TJ24GESuxjk6z0gtdJ4o,3169
|
|
10
|
-
sphinx/highlighting.py,sha256=9Ns4_Bxp4-uk7llGCwi7m3K-zw6YVcslmEJNMUPng1U,7655
|
|
11
|
-
sphinx/io.py,sha256=C0yF1BMsMPiaWJ16uKjIDZ4wgpQ4kwJ8mw1syTEFkTc,6186
|
|
12
|
-
sphinx/jinja2glue.py,sha256=_G9x8uypW9kAlMGGSkectaN4VIosDi0SXn_2qFe91_4,7463
|
|
13
|
-
sphinx/parsers.py,sha256=86Yn9xUBWWe8FxvDf1_BlEzqvSDZ8AMFeYJCbx7AtMQ,3179
|
|
14
|
-
sphinx/project.py,sha256=djxyIEtMgEtj1Ki1y6pVwp_b4LvQR8eW8Of9aFwQxd0,4507
|
|
15
|
-
sphinx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
|
-
sphinx/pygments_styles.py,sha256=oC5LM3fXUdF1qERN9MQjkez-HirhxL8ADWpgWWlc0ys,2853
|
|
17
|
-
sphinx/registry.py,sha256=jJQdrz7VQJvKAFdqAmcUScbn6D0qqoKmUegMbPRh0yI,22724
|
|
18
|
-
sphinx/roles.py,sha256=mTnbo0R6w5V9wlOmx2BU4P0MnpSj0csE9zeEdqT06zs,16966
|
|
19
|
-
sphinx/theming.py,sha256=weW8BDilQks_tRRnewsXTi2WTf0KilEkX753HKeH298,19895
|
|
20
|
-
sphinx/versioning.py,sha256=IlROZblXuBBJGLgQkcuCiWa4DNDm3iNUrvHmzayASps,6240
|
|
21
|
-
sphinx/_cli/__init__.py,sha256=wkG6YzQ2dbIlALI3Jnz3xzTXuyjB7qIO8k-bdN6XoOU,9740
|
|
22
|
-
sphinx/_cli/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
sphinx/_cli/util/colour.py,sha256=YanbRS5c_cwrPW6lQQi0DHIn0Ye2SRWoUcl-NaIEeTE,3032
|
|
24
|
-
sphinx/_cli/util/errors.py,sha256=xKJMQ8syFDHffLpDf9TKq6u78LtQIAx0Y_dtT9zS2fc,4718
|
|
25
|
-
sphinx/builders/__init__.py,sha256=W7b2KjvFs3nf9UwdEftQyMKXHATrNQIN2IVVC2G26c8,29308
|
|
26
|
-
sphinx/builders/_epub_base.py,sha256=kZKnQoVFES3ZdsKCUxDOcTUbdL8cjb-AZDh4xIq7nI4,29532
|
|
27
|
-
sphinx/builders/changes.py,sha256=1NMLFPW0I2_AAjT65iyYgFLpWdLS4RjHGXr2x67Ne9A,6822
|
|
28
|
-
sphinx/builders/dirhtml.py,sha256=yw00d2HmkC4yulrYcDBz7olfEZsCEM7akYuXQRm4u8o,1594
|
|
29
|
-
sphinx/builders/dummy.py,sha256=bF7IVI7qrmNXfsgfFrT6FUZLnW6-RENhniKhr1V3aX4,1075
|
|
30
|
-
sphinx/builders/epub3.py,sha256=XpmKRiH-s1xxBHxk-ZmTcHE-uEd5GPwM7QWQPFTszY0,11516
|
|
31
|
-
sphinx/builders/gettext.py,sha256=-h7af0Z7PW51DY-IoxkALbhXoWASHVhfMfokUvQpp7M,11791
|
|
32
|
-
sphinx/builders/linkcheck.py,sha256=nf_NzXRl22G9GoUhAj2kqi90mOp6ImeQZI1IHT8HvxE,26944
|
|
33
|
-
sphinx/builders/manpage.py,sha256=5XYxs6iSpc1bdL3IS5VHLt40oUYJAnO_TZLKhV5FO7U,4583
|
|
34
|
-
sphinx/builders/singlehtml.py,sha256=mYsB_J5AOi7wEswNbH0v5XXZnmZkBmLRHJaQtz_nB-c,7749
|
|
35
|
-
sphinx/builders/texinfo.py,sha256=nz8nIIljMHfrEb89EUnXLCD7KSA275eoc0PZtNK7cfo,9896
|
|
36
|
-
sphinx/builders/text.py,sha256=RoNTuXGBn9k3XxhvbFpiNiR6WYkP1MFT6B6_BnDeJCM,3046
|
|
37
|
-
sphinx/builders/xml.py,sha256=SiG6rPNmFE9R3rprIBNKODQbzk21QPtHIiCyKqa07TQ,3951
|
|
38
|
-
sphinx/builders/html/__init__.py,sha256=5nxDq59Dv_3zD-1KJDCuLHylPGfLdz2kdmyR9cdLSAQ,60208
|
|
39
|
-
sphinx/builders/html/_assets.py,sha256=9GhVCpJDTD17WzZavhONH9kqOEGS9glD62kBQ16jLeA,5599
|
|
40
|
-
sphinx/builders/html/transforms.py,sha256=DhIabbXbvZM8lrT9AvKJb9JoawsmEt__DhpoeXA8Yvw,2597
|
|
41
|
-
sphinx/builders/latex/__init__.py,sha256=KmVBVPoVqNvleQsXLSdfvLctazDBQb7KmV2xsIv7I1Q,24908
|
|
42
|
-
sphinx/builders/latex/constants.py,sha256=_Yu1kn9W6KEC97cBQEjs5FmpSSPDSPgbAnucR3FF06U,7527
|
|
43
|
-
sphinx/builders/latex/nodes.py,sha256=S3BRn-_54R8b1PaZr9sb9wGG0OleDubO0sXrC-tdkYQ,872
|
|
44
|
-
sphinx/builders/latex/theming.py,sha256=G6ZJWI13inqlXlntiHiSfqYJKk5YB5wChlMiGxVqwjQ,4505
|
|
45
|
-
sphinx/builders/latex/transforms.py,sha256=MiYNgE6H6sIXWpsvO43kE3PMqQ8blG2p2q-u87LDTMo,21038
|
|
46
|
-
sphinx/builders/latex/util.py,sha256=sAMav2oGWB3l-oQc2TxsH-P1zBbREZi282-2TtqQnbk,1703
|
|
47
|
-
sphinx/cmd/__init__.py,sha256=X5XI0lk1-VMeBM6fjCLYc-a_094wd9KyOSKIjpXwge4,44
|
|
48
|
-
sphinx/cmd/build.py,sha256=Ysqb1Bw16t3pFQQYTE1MubuDgMU9jgNSyNLglGobLhU,15814
|
|
49
|
-
sphinx/cmd/make_mode.py,sha256=zyQrCH8tWPT2ifwDB5_Wm_H8MSwpQnh1Wg-F-LNrmco,7057
|
|
50
|
-
sphinx/cmd/quickstart.py,sha256=plnHwb-xlOLG0r-MeUbc77Fmc0tVRQte7DgEUZ-FSMU,23638
|
|
51
|
-
sphinx/directives/__init__.py,sha256=ql28VHzQ6qisUHIuuTrnJmsFZo_U3OXwvUmlhhmOxug,15335
|
|
52
|
-
sphinx/directives/code.py,sha256=yTy4GsZZ6PYKdnhysJpEj3eYRIpDEoYIsWtm9io59p8,18264
|
|
53
|
-
sphinx/directives/other.py,sha256=i-BAUC7VRNL7kFRF-CX0KCOKlancfihMkJqikc0kw90,16433
|
|
54
|
-
sphinx/directives/patches.py,sha256=yXcQCKEmL32GmHcVnKV9LW_WumUYl8EnEIupsljW6WY,7845
|
|
55
|
-
sphinx/domains/__init__.py,sha256=JCJlHT7yyEFAbx7TVmbvX2KsDgfq6cW7pd1sDCKJ1lo,15450
|
|
56
|
-
sphinx/domains/changeset.py,sha256=J9LWgh2dtBAXbX6L3a4J8YB3-wA62AMS1GolKTQsWJ0,5692
|
|
57
|
-
sphinx/domains/citation.py,sha256=G9i8IYsR1tsGfAln7Z9Z_wNL2FDM2sXbWgTojxN_77I,5767
|
|
58
|
-
sphinx/domains/index.py,sha256=3eHbatgPlpfeEbJtqQ6HfBQlEFSem9rYG8fdMUExypU,4266
|
|
59
|
-
sphinx/domains/javascript.py,sha256=LzjdqMlC8Bwz_x_buCiV7wERVKkfhXGlGe1kJ1ZjCTY,19194
|
|
60
|
-
sphinx/domains/math.py,sha256=Q0i04GFVlBLHhdAkCQmiVmsQCtno5J1-PHHWvlY7BXY,5727
|
|
61
|
-
sphinx/domains/rst.py,sha256=HEd973tJlD8OXrg1Mmyufq9eed9M_W4utwtCHwDnhDY,10693
|
|
62
|
-
sphinx/domains/c/__init__.py,sha256=O4TznFcdiuPSoaLkDCvHXKJzpilyVGAIfhDXNoQr5eo,32679
|
|
63
|
-
sphinx/domains/c/_ast.py,sha256=EidrZhDl8t8voHxiw0tbCScoqjrhTUj6qgrMIqoKfgU,66044
|
|
64
|
-
sphinx/domains/c/_ids.py,sha256=R_6xOt4CSGmDxkXwJ5MElKhLLjkZSJdZdvwIr0VvEoM,2220
|
|
65
|
-
sphinx/domains/c/_parser.py,sha256=rJ2h5bj7FuFxIj7S4flmg8P18TGYvajG-D2GN1Pf3nw,41295
|
|
66
|
-
sphinx/domains/c/_symbol.py,sha256=NZS4_-uxs1OcFnMYNXEkRE-VzdGRwc1MTQjOpHI1s4o,25993
|
|
67
|
-
sphinx/domains/cpp/__init__.py,sha256=torzx87GGdOq3hWqS78duBOknmbcMd75KUpWkwPv9AA,47154
|
|
68
|
-
sphinx/domains/cpp/_ast.py,sha256=p7Q0udO0HnB9GRcNHuMf_IBDm3SopHOHxbVCZkOIETQ,163818
|
|
69
|
-
sphinx/domains/cpp/_ids.py,sha256=-h42RrmFnuq4AyZ0EVHtAk_H_9Umrca24Tu-w73TKCw,18028
|
|
70
|
-
sphinx/domains/cpp/_parser.py,sha256=i83YLN8NVxnRTTIvWwYz-k7Y1fiT0jZ9DLFUwATKvAE,88250
|
|
71
|
-
sphinx/domains/cpp/_symbol.py,sha256=zMpQa7WvbhOlvVCZvAfhWXpQ16eIhOncf6EwVm8_MJ4,48863
|
|
72
|
-
sphinx/domains/python/__init__.py,sha256=bOD71LelNZKkgutWktS8ju7qoz714__cv1VpPTGlvmM,35415
|
|
73
|
-
sphinx/domains/python/_annotations.py,sha256=cO7U8JvRcKX1CObNlZrO57UcuhfTNRnczOHmVZiMixo,23388
|
|
74
|
-
sphinx/domains/python/_object.py,sha256=p4uRVcSCWfzHI0HxMxDrilVuyjvfqkjtyhWVtSANrdE,17010
|
|
75
|
-
sphinx/domains/std/__init__.py,sha256=NwHwOhKdG6SD4vPsTTI9btE3_rey22fic1bWkvGe8uc,49485
|
|
76
|
-
sphinx/environment/__init__.py,sha256=aLSwOvGqyub2pFvJ0ptOry35FiXu40YJQ-IniF3F7_A,32029
|
|
77
|
-
sphinx/environment/adapters/__init__.py,sha256=VnDotW2UbxjWeVITmz7iTsVrzqQcvmLHr3euKqqKHwo,34
|
|
78
|
-
sphinx/environment/adapters/asset.py,sha256=huGHWMReM80cD9b88thQeqvJZG3G6BCnG_DY2uIZt0Q,418
|
|
79
|
-
sphinx/environment/adapters/indexentries.py,sha256=P_wReCJyXOZVs-0152oTAGJuv357mKjx8_b0O5jtbzI,8874
|
|
80
|
-
sphinx/environment/adapters/toctree.py,sha256=vCa1n-odYNgcqCl79nLarg_kr1H9-KOnQakMy1n_pEY,18826
|
|
81
|
-
sphinx/environment/collectors/__init__.py,sha256=f3C6lHkxrMcbyd23UOZZmnzzh2UbzgXQvExv2wqP0QU,3136
|
|
82
|
-
sphinx/environment/collectors/asset.py,sha256=S8rp4EAGR7ipzaTiqJYl6wotf3s2MRKDPe2oNjFkf_w,6394
|
|
83
|
-
sphinx/environment/collectors/dependencies.py,sha256=8h8bCjecyrnB9lj7e0Aor9QZWS1CJAoJ5l6eMuw4VuU,1985
|
|
84
|
-
sphinx/environment/collectors/metadata.py,sha256=Ku2PHIElGkdfPQCXaVAYGnrPJRXGKvEXmygPk1BiVsQ,2733
|
|
85
|
-
sphinx/environment/collectors/title.py,sha256=F_YhSjiAaA0jgOGEt7EAV80wnvNz94TY0angblUY3po,2270
|
|
86
|
-
sphinx/environment/collectors/toctree.py,sha256=rLFooRUMZ8XCbXGWVLbzZLBTpd0aeIAX99GM8a202bM,16973
|
|
87
|
-
sphinx/ext/__init__.py,sha256=eTgzKayTdBtgvOc6-TtgyhsIEiKixojINnE4bf_dyZY,57
|
|
88
|
-
sphinx/ext/apidoc.py,sha256=uzHTT4nYvmtJEa1h1Y2fBWic79HA0BQo5VfplrfW2Is,21887
|
|
89
|
-
sphinx/ext/autosectionlabel.py,sha256=8pXINli2kyPic82NhLIMs9sFDL0iS-QOJyfvVOXWgCk,2386
|
|
90
|
-
sphinx/ext/coverage.py,sha256=LP3BuVNI0Ylpu-LUkebOoeQUZe-eyJmy1LOuABoJ4Mg,21258
|
|
91
|
-
sphinx/ext/doctest.py,sha256=mtSF1N5X1-lPBjYBzsTJBWN_YD54OQ5GDEbiPBdInvM,23441
|
|
92
|
-
sphinx/ext/duration.py,sha256=s8506Au0l5Be7D2NEDtzIsVG4ZBm4oWyFlB3Te5mJEU,3177
|
|
93
|
-
sphinx/ext/extlinks.py,sha256=UHsnpIR8zpH9iBXinTz_ygP0hW_jzmJzYSjXkupNxjE,4725
|
|
94
|
-
sphinx/ext/githubpages.py,sha256=8OHrSSgxWfSao_bRBJBi6y3DQoe1iPqjCnL1KIsbj90,2045
|
|
95
|
-
sphinx/ext/graphviz.py,sha256=B8FB8eLr2ea59FZoEmVJYmCeHQqNRGvVl_ITq6i7shE,17639
|
|
96
|
-
sphinx/ext/ifconfig.py,sha256=3jTdCsDeVaSCZej8Tc4ivtlWtds3h8p-vNQ9dgDx1P0,2531
|
|
97
|
-
sphinx/ext/imgconverter.py,sha256=KOLaEB45qXptUAwNKbvkXb6oMB6vyqOmTntz78vVCgg,3696
|
|
98
|
-
sphinx/ext/imgmath.py,sha256=7H_PMC6cFbj4VozzJWKL8HexYmRriKZVyoxuyreh5zw,15551
|
|
99
|
-
sphinx/ext/inheritance_diagram.py,sha256=Hpxa78QfmqjydOux_pFB0zk97Mo_jy1RkkyPGxG6rEk,17491
|
|
100
|
-
sphinx/ext/linkcode.py,sha256=x4Ku-cssPT771pj5Rp966kPSK20hq06O9pf03asl2lk,2352
|
|
101
|
-
sphinx/ext/mathjax.py,sha256=039LM1bTDlt01BdORkQU2Kx2Utn_-yFuBVOBerFpYlc,5409
|
|
102
|
-
sphinx/ext/todo.py,sha256=ZESgIdZnvvh0NXidcdqJjiSr_Y-alHMrtaQqxV1nVIA,8350
|
|
103
|
-
sphinx/ext/viewcode.py,sha256=_lnsW6NPZHZ0ZDw70L8lrIWcsc3cAOiA3-345I_88wc,13855
|
|
104
|
-
sphinx/ext/autodoc/__init__.py,sha256=Y6dbsFLtPJwWHnKzqHBbtStXuvgMEhV6G0DliY8Lkh4,114962
|
|
105
|
-
sphinx/ext/autodoc/directive.py,sha256=0i6Tp6WTd8UEupIAqic9BRN1OpPMhxII-uMY_77mRL0,5872
|
|
106
|
-
sphinx/ext/autodoc/importer.py,sha256=LCNU8ieyglCpfv1QkvDE-a9Y9-vsHm1iee-a7iDGkz0,15866
|
|
107
|
-
sphinx/ext/autodoc/mock.py,sha256=qMGXSS0-s4ODVC8u0Ao9-TSTqbw2Nhcg3ZuQhBcl9dc,6049
|
|
108
|
-
sphinx/ext/autodoc/preserve_defaults.py,sha256=-JWkgpDvPWtnubUiFOLMfhDmnqg7Ma2xcdd4moEblak,7120
|
|
109
|
-
sphinx/ext/autodoc/type_comment.py,sha256=FclaU566JP0ly2k0XupMi9efnBKWiW1Zoc9L1cQdliI,5422
|
|
110
|
-
sphinx/ext/autodoc/typehints.py,sha256=LIO8sgLCCdvJAnmM5OSPQQHStwUa5igjZgnu803Fy4Q,7973
|
|
111
|
-
sphinx/ext/autosummary/__init__.py,sha256=3uVXaLYgquyk5CPSALONK30ynKhsF_SQMmMu1hpmieo,32130
|
|
112
|
-
sphinx/ext/autosummary/generate.py,sha256=SW7sJMtNjZfxjZXz__08qvb0JvrchuoR6QxXQzt2hxg,28253
|
|
113
|
-
sphinx/ext/autosummary/templates/autosummary/base.rst,sha256=AfG9oeDMTKBsBf2lUKr-NolOeV7ImT_JrKG3KQkEGzE,106
|
|
114
|
-
sphinx/ext/autosummary/templates/autosummary/class.rst,sha256=1uu4SSX9KRCeNlcr7FMRZ-DrPuW7E6tQ7QZC1asnAL0,553
|
|
115
|
-
sphinx/ext/autosummary/templates/autosummary/module.rst,sha256=HuEHeghiPzJ5jgDNy3_3vZ7De-AtWZjgYx_57LrP9tM,1085
|
|
116
|
-
sphinx/ext/intersphinx/__init__.py,sha256=FdZnFq4CLNiJS2Rx5gguNKV9hnQHM6cnLuz9X6lUErc,3355
|
|
117
|
-
sphinx/ext/intersphinx/__main__.py,sha256=zapvRzIUEUskvRfaYkf0okrNxPVL2rMWso4NvHOsz7g,218
|
|
118
|
-
sphinx/ext/intersphinx/_cli.py,sha256=ule-GoRxPfJc9hGhCdufGrmFdUYto4ErRdQ79h19T7U,1501
|
|
119
|
-
sphinx/ext/intersphinx/_load.py,sha256=CrUz-E7T0N8o3FvU3mEzCaiPKCifN0RSQQ_m9DG-HGA,13736
|
|
120
|
-
sphinx/ext/intersphinx/_resolve.py,sha256=pVYa_unkLOMZg83lLyfKK14uc4HJWw7-3PPqJqyi47I,21027
|
|
121
|
-
sphinx/ext/intersphinx/_shared.py,sha256=5KAjorx5QKuj0GhsHpSY-Omyc06ha8H_gS30W6o_AhM,5467
|
|
122
|
-
sphinx/ext/napoleon/__init__.py,sha256=nGH7cDpl-BnEyeEoRlpk28XQ-X7zIdYTDxIYkP0z0Fo,18153
|
|
123
|
-
sphinx/ext/napoleon/docstring.py,sha256=DImNdKvEctIDda4NqGbfrkrrGAF1cB3zbR5hK-wz9GA,49017
|
|
124
|
-
sphinx/locale/__init__.py,sha256=u61rnvedi1WUvADaa034ggmvcLOCwtyRvbzkncMYa98,7296
|
|
125
|
-
sphinx/locale/sphinx.pot,sha256=tWa2J_Yim7e9Tun9d7gx4cFR0d5rdXxWv_1Gqv6GxwY,125267
|
|
126
|
-
sphinx/locale/.tx/config,sha256=WhhxMTRN6Jtvv0v4eQdX003u8JDsCtT9_Ln2n4X8eBM,165
|
|
127
|
-
sphinx/locale/ar/LC_MESSAGES/sphinx.js,sha256=7IEiPDCGU7n_hbsbx5BqoIGYlusMKLXonApNkTPMdSA,3495
|
|
128
|
-
sphinx/locale/ar/LC_MESSAGES/sphinx.mo,sha256=ZVCTSoxS650RO9vSk0YSBW706v2tKte8om3QTiXaB9k,7421
|
|
129
|
-
sphinx/locale/ar/LC_MESSAGES/sphinx.po,sha256=kwbgUHahNhPSX1V9102uoxcrImMWNNqvL9mgtNICNt0,128478
|
|
130
|
-
sphinx/locale/bg/LC_MESSAGES/sphinx.js,sha256=oSJlcdmpBbV6DUDllgJEUnFlWltXNNFn0X1jJL21KZI,2301
|
|
131
|
-
sphinx/locale/bg/LC_MESSAGES/sphinx.mo,sha256=K0-Gv2_jBgT1bc5jB0nMRwpaYdb0AkZvXJwwTnoxwpA,1082
|
|
132
|
-
sphinx/locale/bg/LC_MESSAGES/sphinx.po,sha256=JKOqwfKX3sFNL9PTv2keCxAbOFq_xAZ-vEYwZAElpOE,125684
|
|
133
|
-
sphinx/locale/bn/LC_MESSAGES/sphinx.js,sha256=EDBsN7XJXLquIuaESShKhIgAgPCt14_0Da9a-iRqleI,5920
|
|
134
|
-
sphinx/locale/bn/LC_MESSAGES/sphinx.mo,sha256=rrSEFl0_xoEa6nGk6B9uorJMOeDGq-GvQvMhnHKkgFQ,7443
|
|
135
|
-
sphinx/locale/bn/LC_MESSAGES/sphinx.po,sha256=sj3aGJcW77rwH6_-IGrGBMUw4Aq_A7kiU0wx2LE6RjI,129083
|
|
136
|
-
sphinx/locale/ca/LC_MESSAGES/sphinx.js,sha256=6KRst0u-y8u_A_DCkteQZZc9AeoBHZJXHFSKH4lA9J4,4004
|
|
137
|
-
sphinx/locale/ca/LC_MESSAGES/sphinx.mo,sha256=j38CeSS0HeyqgtY3boZa5vGDpj2Ckf0_eDOeXRsmmMQ,86813
|
|
138
|
-
sphinx/locale/ca/LC_MESSAGES/sphinx.po,sha256=h8a2bMEIX8svD3Up16yxGUMuwNhnSC4ssQRW8b4n08M,165656
|
|
139
|
-
sphinx/locale/cak/LC_MESSAGES/sphinx.js,sha256=qTTQhQbuSmxJXFc6cHmzdaGZ1pOrq3BedT1WYgHb7uI,2386
|
|
140
|
-
sphinx/locale/cak/LC_MESSAGES/sphinx.mo,sha256=Uwnp0HItuytdrtE_fUpr6hcIT5jGYNSmi7jNzom-1x8,2391
|
|
141
|
-
sphinx/locale/cak/LC_MESSAGES/sphinx.po,sha256=P4gAydhfpOQZ3EMntlsTYh_3mjHHaLFAgrK-5FFQKII,125990
|
|
142
|
-
sphinx/locale/cs/LC_MESSAGES/sphinx.js,sha256=REVP_ObSNg3831s_g8luHNwOp-iGsmIXoIQW5q2e3ek,3943
|
|
143
|
-
sphinx/locale/cs/LC_MESSAGES/sphinx.mo,sha256=VvXmUuqfXr8EDDV0_TLpdQskyT8gR4VczVcDDv4szfI,7680
|
|
144
|
-
sphinx/locale/cs/LC_MESSAGES/sphinx.po,sha256=QomrJdbdAIuF7HSOhTu3odTLG6GGY6DSS8ZjT_Kyr-Q,127880
|
|
145
|
-
sphinx/locale/cy/LC_MESSAGES/sphinx.js,sha256=c2d-gC7SUExbHy1hnOuh56M1MudsN0TSycPKSQQCWaY,3390
|
|
146
|
-
sphinx/locale/cy/LC_MESSAGES/sphinx.mo,sha256=-b77lL-bHIvTKDcb39W6-wjTJFyU_YFFFkOLPOoQLm0,5570
|
|
147
|
-
sphinx/locale/cy/LC_MESSAGES/sphinx.po,sha256=Zn-ZsjdgYpMdD72UJf_owyDWuKvqNdd_O1kD83xp9Zw,127130
|
|
148
|
-
sphinx/locale/da/LC_MESSAGES/sphinx.js,sha256=wOpvgisP1nDQCD56IseruPENi_okg2gMur1jbC7fqlM,3557
|
|
149
|
-
sphinx/locale/da/LC_MESSAGES/sphinx.mo,sha256=VEm-ZU1KrnlDF4JUUdXgYPX4N8_EFQxHyLJ18CPb7WM,12076
|
|
150
|
-
sphinx/locale/da/LC_MESSAGES/sphinx.po,sha256=b_uDculURKz-QmmNafoHOHajQXFa0Ueu6UjkAWorbAs,129505
|
|
151
|
-
sphinx/locale/de/LC_MESSAGES/sphinx.js,sha256=lkN6Wlyxu53xQ2ucCE3vAy4N_fHYVmGPWjKBadWGZhA,3498
|
|
152
|
-
sphinx/locale/de/LC_MESSAGES/sphinx.mo,sha256=Keo11RFN6SaisohZE3194HhXqy09DUYRAAgchPAReHU,10469
|
|
153
|
-
sphinx/locale/de/LC_MESSAGES/sphinx.po,sha256=EOOcP2BR9jpLSd5ZuEb60YZhhcjAeH0vPVyL7H9i0zs,129150
|
|
154
|
-
sphinx/locale/de_DE/LC_MESSAGES/sphinx.js,sha256=7Q7UY7jwtnzVIfK3rYSZjaFxllM_bUnbA3usrm5PRXs,2304
|
|
155
|
-
sphinx/locale/de_DE/LC_MESSAGES/sphinx.mo,sha256=S5oNULu8KSw7MmmgKbqZab1d1ux8wmRtk_Xgwj14Co8,505
|
|
156
|
-
sphinx/locale/de_DE/LC_MESSAGES/sphinx.po,sha256=BGY65bdhl5aBZesW-7c7cl8KD0Kcu_T81_XG4woUS-U,125289
|
|
157
|
-
sphinx/locale/el/LC_MESSAGES/sphinx.js,sha256=arbVQM8pfdOVJc08KnIUTeSMZbKvnk3i_KMqzZ2Co6k,8689
|
|
158
|
-
sphinx/locale/el/LC_MESSAGES/sphinx.mo,sha256=UPc_WguJHx2Gna2op0dL_BYuEGHoqi8wWaw79-HVyNE,76962
|
|
159
|
-
sphinx/locale/el/LC_MESSAGES/sphinx.po,sha256=-oaXYuGtpJWxyIGePfzPLVvBXKip07XePcezcr2y0LA,170515
|
|
160
|
-
sphinx/locale/en_DE/LC_MESSAGES/sphinx.js,sha256=Iy_ok5-Z0X9j2j7CSJthZ4rl-QKBf97DNLFACV1nOKs,2304
|
|
161
|
-
sphinx/locale/en_DE/LC_MESSAGES/sphinx.mo,sha256=pl_gFRMrb6pXiGGEs2ndQEy89xSRqVKRecmCZqyILdU,506
|
|
162
|
-
sphinx/locale/en_DE/LC_MESSAGES/sphinx.po,sha256=V3AxEmz7oeT4UJhPG-Cqf5h-1JGaqRFqD2a8blYrN2I,125290
|
|
163
|
-
sphinx/locale/en_FR/LC_MESSAGES/sphinx.js,sha256=y0mdoAFM591quMAT8ql3qONizAWh-rFUSu25sheUttc,2303
|
|
164
|
-
sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo,sha256=pgis6-CSXgDDprnAF0R9VXP8aFGQqdP6AdGzMgpzxPI,462
|
|
165
|
-
sphinx/locale/en_FR/LC_MESSAGES/sphinx.po,sha256=6vTLHkZjVx-a4RZJTmiZyltLCTP4V5YiTCBF12CRSeY,125289
|
|
166
|
-
sphinx/locale/en_GB/LC_MESSAGES/sphinx.js,sha256=FP494DxPAj3pJLqDy1BWWHAsxXuVbUWQaxIss6e8AnU,3610
|
|
167
|
-
sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo,sha256=sCfq3pD90O7kKgsAWj5Iyqg2RpDDeRpn7K78SULHUQc,72644
|
|
168
|
-
sphinx/locale/en_GB/LC_MESSAGES/sphinx.po,sha256=P0L3FFVjEo44_degwJJex9xhCDeqbQBFJBCiWkctlNk,155169
|
|
169
|
-
sphinx/locale/en_HK/LC_MESSAGES/sphinx.js,sha256=GdYN2-9-wz3g_A1rG8RPYDKyE42SycquxEIEqVfPRrE,2304
|
|
170
|
-
sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo,sha256=-cKUEBY4t7sdzCcllWYNMgY3Ia14LHDbLbM8PZkTH9E,508
|
|
171
|
-
sphinx/locale/en_HK/LC_MESSAGES/sphinx.po,sha256=Uta556wftHk79i4EDGjKwToTGTTxJz6F6IpzrMDAizY,125292
|
|
172
|
-
sphinx/locale/eo/LC_MESSAGES/sphinx.js,sha256=n3xV3h-EIwvGMpa_PqM4Io4XxwoWCwb3fNOCk4SY3MU,2436
|
|
173
|
-
sphinx/locale/eo/LC_MESSAGES/sphinx.mo,sha256=0Qb-qU0M-MEXjwGnNoTJA5Z9Y0n2NS6d3dd6SUpQFWc,1803
|
|
174
|
-
sphinx/locale/eo/LC_MESSAGES/sphinx.po,sha256=orJ4KMhBcWuQKZN9HZtnrya4BBUrCmjjacRpv5AuP7w,125750
|
|
175
|
-
sphinx/locale/es/LC_MESSAGES/sphinx.js,sha256=33sl7xtup9s8TARHdavKdZMzKlYevjrONoWIvTfTT74,4129
|
|
176
|
-
sphinx/locale/es/LC_MESSAGES/sphinx.mo,sha256=q2KrxI279zomreWiINahPXwZhYz3eXW3-SOwYmbT1U8,77697
|
|
177
|
-
sphinx/locale/es/LC_MESSAGES/sphinx.po,sha256=JtJSWvgnw48gGAIyhJ9pE4_svucwjE24PhEeglpjeUs,161334
|
|
178
|
-
sphinx/locale/es_CO/LC_MESSAGES/sphinx.js,sha256=amkefg30W0UyE0EhtZ5Z17fo64QzfhJXO43ip5UcEnE,2343
|
|
179
|
-
sphinx/locale/es_CO/LC_MESSAGES/sphinx.mo,sha256=wr_oB0ilHPwlDoWmf9agMIavnBlJ1bPxa4Qca9wQ3HA,546
|
|
180
|
-
sphinx/locale/es_CO/LC_MESSAGES/sphinx.po,sha256=a0eSVQS-4dBCqFsBj_wJtNuMBIo90Pn5vRIy2GqjIEE,125330
|
|
181
|
-
sphinx/locale/et/LC_MESSAGES/sphinx.js,sha256=Gj7zao3h3c7f_1TRf8whhkO0fiNmspIKrInCKLBF2hc,3594
|
|
182
|
-
sphinx/locale/et/LC_MESSAGES/sphinx.mo,sha256=OyWKijL9sHemMf29UXIbGYpZzNpfW2g0JNZf-3I-QOw,31309
|
|
183
|
-
sphinx/locale/et/LC_MESSAGES/sphinx.po,sha256=1ajogE2H4I1mz8J2Av0MvKkPfMsMJxrciESGPwAtBM4,138038
|
|
184
|
-
sphinx/locale/eu/LC_MESSAGES/sphinx.js,sha256=On0HWivov5Abm89ASrGDT2OPjqyE-0fB_wAFHx4vjUw,3080
|
|
185
|
-
sphinx/locale/eu/LC_MESSAGES/sphinx.mo,sha256=n1gb6bT3BI9-VVgp7I2PvBRDbkZiRVR1oR5hKL7D88E,6389
|
|
186
|
-
sphinx/locale/eu/LC_MESSAGES/sphinx.po,sha256=dcYm0I6kqC0RPl0ibAjCESuMBkedpvYI6bVx8rXBKEo,127379
|
|
187
|
-
sphinx/locale/fa/LC_MESSAGES/sphinx.js,sha256=zF62s7mV00O5j_vC8FkfqwhAxbixwZdjCLF2oN6l4oc,7506
|
|
188
|
-
sphinx/locale/fa/LC_MESSAGES/sphinx.mo,sha256=-lSxjbUa0VjRYpZBMFbFYmEpa5NAwIgsDiCH2AXJuS0,93162
|
|
189
|
-
sphinx/locale/fa/LC_MESSAGES/sphinx.po,sha256=nqxMPW3WTIQUsqDZF2TKEE_2wRqsQmHwuN87fCDDP90,178005
|
|
190
|
-
sphinx/locale/fi/LC_MESSAGES/sphinx.js,sha256=0ILOmFgLzAmCns3Mnk4aDln0Gac1gG7acVqABvI0CHc,2788
|
|
191
|
-
sphinx/locale/fi/LC_MESSAGES/sphinx.mo,sha256=rf8gH4JKwf1vFfGlJdtKTH4NZDQdbkvFe4GsjTqdnWM,2860
|
|
192
|
-
sphinx/locale/fi/LC_MESSAGES/sphinx.po,sha256=tcQz5anLXKItWrwSwdBNBjVYFmzNOPTOLX_l1SPQwx0,126059
|
|
193
|
-
sphinx/locale/fr/LC_MESSAGES/sphinx.js,sha256=mp2PvkfllGd6KkpJgM3XnuDCl5HmiuUfSyJXMDfBP-0,4184
|
|
194
|
-
sphinx/locale/fr/LC_MESSAGES/sphinx.mo,sha256=GgHaoWUQfAUF7hLW-e6FW1uPZ1VL6GCYAQVTl_Av9pc,88114
|
|
195
|
-
sphinx/locale/fr/LC_MESSAGES/sphinx.po,sha256=9l8XxwdDgazKhW3ZjCmmYt6cquKlFM4w-iRjNGRmwVM,168077
|
|
196
|
-
sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js,sha256=ovxBj_8yQmtxLdRJTaeAXZCQBiFFmO22O9DUxAlxxQM,2355
|
|
197
|
-
sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo,sha256=lfSa539kDya6FqwRXuZhNyHwEBmhzm3dvKawtlF0f84,555
|
|
198
|
-
sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po,sha256=9hjgGezeoYO8iIBKsJckbsfGY-r0P-YYrfrwBg3zEOA,125339
|
|
199
|
-
sphinx/locale/gl/LC_MESSAGES/sphinx.js,sha256=70aJmOttgSdIGF86kbX3kHMl70z4BjH1uU_MGtO7V5M,3980
|
|
200
|
-
sphinx/locale/gl/LC_MESSAGES/sphinx.mo,sha256=6R4MX2ZU7J-rqiNPsIQIQyOgHOXt1YQhVQeQZxV06Z8,81288
|
|
201
|
-
sphinx/locale/gl/LC_MESSAGES/sphinx.po,sha256=Wex8kd_pb_SUO2B2VvddBkGtsuKe84xPcsPRwSQeeM8,162949
|
|
202
|
-
sphinx/locale/he/LC_MESSAGES/sphinx.js,sha256=uZAza7rr3rdkp41L8rkZ2EGrFRnjVn3sSgdyWkiomWY,4842
|
|
203
|
-
sphinx/locale/he/LC_MESSAGES/sphinx.mo,sha256=lI7RJxJz7qoj4n-pn29OsTPNTJCuctSBAgJuO_1CSXs,4723
|
|
204
|
-
sphinx/locale/he/LC_MESSAGES/sphinx.po,sha256=pQ6ReeNBQTKEQ9cea6j2V4mZTcUvbplWEuP0jPS9h4U,126993
|
|
205
|
-
sphinx/locale/hi/LC_MESSAGES/sphinx.js,sha256=walGldiqcPCrLuFbyVx4sxLxd7uWpgpujM44uliFEk8,7346
|
|
206
|
-
sphinx/locale/hi/LC_MESSAGES/sphinx.mo,sha256=B_WuF4dqIiwAeLrJeEm4Q62LhU7QvGQWVuVuVSwCKjQ,92869
|
|
207
|
-
sphinx/locale/hi/LC_MESSAGES/sphinx.po,sha256=gQTdqLeCLt2mXKKFQZbtOBN0sJljSRISu4QSS2aVjuU,184693
|
|
208
|
-
sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js,sha256=hU1iLBuo0oDIjjo77Tq2DgrSnVd0hf50EOK5XT0hg7k,2304
|
|
209
|
-
sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo,sha256=QpnStToz5la9nYDgCZWh3R5_7tTxMW81qQj8-oYljso,502
|
|
210
|
-
sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po,sha256=BKt3ivXcyS9WTCOPxAY0xagk20XxLxm_ynZQDFvwB_g,125286
|
|
211
|
-
sphinx/locale/hr/LC_MESSAGES/sphinx.js,sha256=_qb2XP5Exf5glv1LJkN61nVUiPyvayugAQ8-KaJp3PY,3601
|
|
212
|
-
sphinx/locale/hr/LC_MESSAGES/sphinx.mo,sha256=OH4SEr6YjPwPp2y57YpM78MAul_-_q6E_-PAlWS56aU,15818
|
|
213
|
-
sphinx/locale/hr/LC_MESSAGES/sphinx.po,sha256=bmm5PEAw73DJ7f95nb5tJuT6UuFNmgn6HQJV-90Yvuk,131237
|
|
214
|
-
sphinx/locale/hu/LC_MESSAGES/sphinx.js,sha256=wKzxvQdv_i7kIBaWWCdHL_d62U0ENTImz52U7mmR2HU,3944
|
|
215
|
-
sphinx/locale/hu/LC_MESSAGES/sphinx.mo,sha256=loyeXNLdxF7-UtLEjPkWBfO6EvpLhKY1ifLizG67Xyk,10846
|
|
216
|
-
sphinx/locale/hu/LC_MESSAGES/sphinx.po,sha256=7kyYg1ni5fTnfvp2zDc_Qk3M51_VSjWW4UpG4m54EfI,129517
|
|
217
|
-
sphinx/locale/id/LC_MESSAGES/sphinx.js,sha256=5pfGSVsLcI9-6o62xw88YZ_7ZYRQsvUjw_iAIteburs,3445
|
|
218
|
-
sphinx/locale/id/LC_MESSAGES/sphinx.mo,sha256=vNwYkl7O_HyD8CSupwFMBz_S91gQVCIByJDy3zXE0Cc,57697
|
|
219
|
-
sphinx/locale/id/LC_MESSAGES/sphinx.po,sha256=aWRgqhPS3MSKeRw6BGcE6JVDYsWLpu5UiA7PRKHTn1w,149783
|
|
220
|
-
sphinx/locale/is/LC_MESSAGES/sphinx.js,sha256=Q60OXHwgeBQZkZ9anBjiPu86qKG9kHld6HzxuoQZrTg,2826
|
|
221
|
-
sphinx/locale/is/LC_MESSAGES/sphinx.mo,sha256=7pvOhx8XOuJvZKdzVg6snHeUgRooGMdqSxSPfm44Ugs,2614
|
|
222
|
-
sphinx/locale/is/LC_MESSAGES/sphinx.po,sha256=g8ABkcM4ynasOd2hm1pJ-qJ5aDB0VSzrxrxfr2jGoB0,125980
|
|
223
|
-
sphinx/locale/it/LC_MESSAGES/sphinx.js,sha256=fFzO48H9u92cBDt_acVxQ-Q9xzcmIL1h_JlzcAcg3_g,3558
|
|
224
|
-
sphinx/locale/it/LC_MESSAGES/sphinx.mo,sha256=F26uat42UfOemaJPxXRWOab2tqsSH-JGGH7P-fewcV4,10143
|
|
225
|
-
sphinx/locale/it/LC_MESSAGES/sphinx.po,sha256=gxWnh--ti5Uk8vDA-_bW0tu-mHRdsOXnxwY_MTzj_Rs,129135
|
|
226
|
-
sphinx/locale/ja/LC_MESSAGES/sphinx.js,sha256=Lm8NlHv6e4g78em_PNjPMGft3Z36ioXo0S9HHKIWQLY,4930
|
|
227
|
-
sphinx/locale/ja/LC_MESSAGES/sphinx.mo,sha256=IfMkUIMS08KJFfApDXGtun3rKxAUr9kGC0Gw2V2lYDA,82352
|
|
228
|
-
sphinx/locale/ja/LC_MESSAGES/sphinx.po,sha256=2a4t2vN6l36qnUPyLCJbgj9qVuiWm09iT2seu5Phfhc,167659
|
|
229
|
-
sphinx/locale/ka/LC_MESSAGES/sphinx.js,sha256=N1jdSt-iUCWrn_El2yRH92U-9TokuoVheREN1xloqx4,6109
|
|
230
|
-
sphinx/locale/ka/LC_MESSAGES/sphinx.mo,sha256=EXSME731ku8PKCfRgG6INZ_QI0rrF7SrC0PmNbMneak,71486
|
|
231
|
-
sphinx/locale/ka/LC_MESSAGES/sphinx.po,sha256=M9rHjr2yIQEMUljKvSS1pFq6EZFdgZy-5cnKlt6kKfQ,170859
|
|
232
|
-
sphinx/locale/ko/LC_MESSAGES/sphinx.js,sha256=wAozl8P5q_-A1pP5mkSV1bstY_zEcS8PQIzg8Wp8_wk,4780
|
|
233
|
-
sphinx/locale/ko/LC_MESSAGES/sphinx.mo,sha256=X4Cg07CnW3mpfEpESnKIroPINgihGZH39Yk63q2GUAk,78933
|
|
234
|
-
sphinx/locale/ko/LC_MESSAGES/sphinx.po,sha256=RIgPWpSI6wjUGwqjWslvMBrM25MGOrtrUNeV-tSkN10,162231
|
|
235
|
-
sphinx/locale/lt/LC_MESSAGES/sphinx.js,sha256=DNIKiley0qptsYuL7G7vci1wVQTQHTxUXnL6dAvuc54,3450
|
|
236
|
-
sphinx/locale/lt/LC_MESSAGES/sphinx.mo,sha256=40QAWq_pEctDfi_VF6_HIR8hUI81uOFD554IJahpYJo,6716
|
|
237
|
-
sphinx/locale/lt/LC_MESSAGES/sphinx.po,sha256=YUUgwJkkX5zJ5TPnpsKUTEP8CZPXovxctY_oMWOr1Yo,127565
|
|
238
|
-
sphinx/locale/lv/LC_MESSAGES/sphinx.js,sha256=1KZccIWVxbMbxFboKjd1UZfPcOTmpvTW0Fx9IsqftXQ,3423
|
|
239
|
-
sphinx/locale/lv/LC_MESSAGES/sphinx.mo,sha256=DXkAXE3uxfIE9NZJUEPJwY7k3r9Xr7DJ2bi30onDTOo,6387
|
|
240
|
-
sphinx/locale/lv/LC_MESSAGES/sphinx.po,sha256=ht9HvonFb2VRbgvUeiEIKEFhkvsl714ObDMShK2OPP0,127273
|
|
241
|
-
sphinx/locale/mk/LC_MESSAGES/sphinx.js,sha256=lU1W6SU1UVWmWWDGais--KkZgJm9_egevi-dLZgPoh0,2416
|
|
242
|
-
sphinx/locale/mk/LC_MESSAGES/sphinx.mo,sha256=NYekIAerItwgonp26UvLkMtFIGPuMHsaBUdDAOJ5Ewo,2011
|
|
243
|
-
sphinx/locale/mk/LC_MESSAGES/sphinx.po,sha256=13ZxEuSivM7Sb42SVpZeNMCirGELJBfA-lhhXH_7p-s,125966
|
|
244
|
-
sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js,sha256=yYvj1bnk7i0CVnAUcxpkMhClCRjDiQppFAgMhI0WjLQ,3589
|
|
245
|
-
sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo,sha256=2r_rcim5JYla7_giyxfzWv4aQs9o_z-rqu9UB0ZR7tA,7726
|
|
246
|
-
sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po,sha256=jJdQtKNALROTCw_m_e7lRmULKODexj45IwuHzd6s7LI,127658
|
|
247
|
-
sphinx/locale/ne/LC_MESSAGES/sphinx.js,sha256=pUtXQ99gbjrccybZTapaWCBY2f61InbeM3kh7j1RA60,6203
|
|
248
|
-
sphinx/locale/ne/LC_MESSAGES/sphinx.mo,sha256=Y3l4Mh6M03RwMVraEkVz0upejYPspqMY7YNv35EtQ3U,8387
|
|
249
|
-
sphinx/locale/ne/LC_MESSAGES/sphinx.po,sha256=2FpNYYBFZl0sw7UKC4riW9PiJpEo4ggITgCNA2kxCt4,129262
|
|
250
|
-
sphinx/locale/nl/LC_MESSAGES/sphinx.js,sha256=tGU7GIgkW1rzJQD5MP8xYgyv2uP8HYoKbf0iZpXGPRg,3469
|
|
251
|
-
sphinx/locale/nl/LC_MESSAGES/sphinx.mo,sha256=xfLoowG9D1S1kY3_3IOwWZZMLFnUDpgtXqH3PizSV9A,18008
|
|
252
|
-
sphinx/locale/nl/LC_MESSAGES/sphinx.po,sha256=g9Hgzra1SCjXxgc3hzAi3oyeMNCI47hDtXjqpRPv35Q,132526
|
|
253
|
-
sphinx/locale/pl/LC_MESSAGES/sphinx.js,sha256=vCK056PZ8WgWigvJeEwcDXoPFVo8d5YiQ0FQh8DEoMg,3798
|
|
254
|
-
sphinx/locale/pl/LC_MESSAGES/sphinx.mo,sha256=Xb71nS0ZWzMkdRsV6JsIF4hVoFTV5GiWGfCsSnA2YGw,28282
|
|
255
|
-
sphinx/locale/pl/LC_MESSAGES/sphinx.po,sha256=oxjtVdI6o2h4O9SbZZUlW5J2XIXqGSZIWoV-jbmSBFI,137129
|
|
256
|
-
sphinx/locale/pt/LC_MESSAGES/sphinx.js,sha256=YGluGaSSA-8vxgoL6gLeuCsDxWousgsC4g9WLT2GD-U,2352
|
|
257
|
-
sphinx/locale/pt/LC_MESSAGES/sphinx.mo,sha256=WswEeNRIh-cxnp2e5_CHzoU0QdK0h8UPfcecsticcAo,544
|
|
258
|
-
sphinx/locale/pt/LC_MESSAGES/sphinx.po,sha256=kHfNnEv5_nePMXzOmpuJIGb0riIYIgatDKaF95kbtC4,125328
|
|
259
|
-
sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js,sha256=kG7LbIvU6jx3Fg7kbajPnv4C5vYHnEn3d33cW_bz6ho,4221
|
|
260
|
-
sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo,sha256=TRncfhwCYliK9COePejPoyMvpAEqZoU86fJJT3lwq5k,91635
|
|
261
|
-
sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po,sha256=RHfIGTlq28GzkREqeAsf7o020Ee0VQVMtGY-M2GJZoE,166956
|
|
262
|
-
sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js,sha256=OkQQA6LsGDLKBic5oBCOTfU2PFx0_JQhHasxH-yF7bM,3719
|
|
263
|
-
sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo,sha256=7y17IZ23Eg7OsPv9TYeijwg04QntkGf2c0KQwRfqvkg,7649
|
|
264
|
-
sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po,sha256=w8OTn-Wf9x0RcrN6MfBqQ_skwTNibVRS2cS4cYV-3d0,127928
|
|
265
|
-
sphinx/locale/ro/LC_MESSAGES/sphinx.js,sha256=A7ej-z4kmzoqJHuZfZ3gBvTy447woMHrYVQgiyWdyVQ,3680
|
|
266
|
-
sphinx/locale/ro/LC_MESSAGES/sphinx.mo,sha256=fylDirHSWbUBHSK3t69_gTvr_6eESAFpH0koSboGr-E,8144
|
|
267
|
-
sphinx/locale/ro/LC_MESSAGES/sphinx.po,sha256=aBb6PLS3hKpVZ7hOf3nz-vFpIg7W58f6NmrazHpQTXk,128112
|
|
268
|
-
sphinx/locale/ru/LC_MESSAGES/sphinx.js,sha256=7cyp2yYnfZeaOdUhVNT6SJBZu3oCaN4mhPd_CNaa_Vk,8035
|
|
269
|
-
sphinx/locale/ru/LC_MESSAGES/sphinx.mo,sha256=RO0FBs1bG-8y1tFIoGLub5J_ZxelnQhmjQs35D1vzII,38379
|
|
270
|
-
sphinx/locale/ru/LC_MESSAGES/sphinx.po,sha256=AOPejJy22DrQqArq9JiWMIA-jttmLm3D-sG0tMkFZiw,146057
|
|
271
|
-
sphinx/locale/si/LC_MESSAGES/sphinx.js,sha256=AffU90WSby3az9u_qLcxiK5PBEyntCeX7WkE3PEI4H4,3817
|
|
272
|
-
sphinx/locale/si/LC_MESSAGES/sphinx.mo,sha256=ZKv5AwDwoeGFz10QUCZWrkvVLl35VJxkeUUOGs1CIzU,3488
|
|
273
|
-
sphinx/locale/si/LC_MESSAGES/sphinx.po,sha256=1Jn6F8JRAzCq9WPknZnTPRdaDSPXc3JmtQOo6GgufHM,126721
|
|
274
|
-
sphinx/locale/sk/LC_MESSAGES/sphinx.js,sha256=y-tCZ3LAT7Foi7O0p2cJRBPxB-FiDIdf5XgtBCVbtrw,4097
|
|
275
|
-
sphinx/locale/sk/LC_MESSAGES/sphinx.mo,sha256=DO-FfAl6x25-mkmMWEHoiPUqGvV48v7UqORNzE9l4pQ,63350
|
|
276
|
-
sphinx/locale/sk/LC_MESSAGES/sphinx.po,sha256=KZLaq0PW7IFmn6N1NvfWq6h-hZ3EE8Lsnkj3VdALXAc,152743
|
|
277
|
-
sphinx/locale/sl/LC_MESSAGES/sphinx.js,sha256=_pSQzYvb3OUXw7yOlSg_vp8uz6syJkEYdZ4LET-hgXk,3164
|
|
278
|
-
sphinx/locale/sl/LC_MESSAGES/sphinx.mo,sha256=Sl2GltRmhZUfCPkilxP1qbn9VDc7Jc3l2G-yaHsRqMk,5044
|
|
279
|
-
sphinx/locale/sl/LC_MESSAGES/sphinx.po,sha256=7IY64AJRsOgZgn9l1qPsJ2c-6SdtuSvIJ_AAI3oWP7Y,126780
|
|
280
|
-
sphinx/locale/sq/LC_MESSAGES/sphinx.js,sha256=V0PISzHed5VTiz0KK2Xqu9of9ZGlBSqgiReUCMyIe7k,4260
|
|
281
|
-
sphinx/locale/sq/LC_MESSAGES/sphinx.mo,sha256=Wnc7EkQvMcVSOJj_uLynN9AVGlpqAO5t15VP8Y5ZJ7Q,85213
|
|
282
|
-
sphinx/locale/sq/LC_MESSAGES/sphinx.po,sha256=PcrCCS81LeMeHlAZIe53Y8MZdFAjoLGZCultEv31iPs,164454
|
|
283
|
-
sphinx/locale/sr/LC_MESSAGES/sphinx.js,sha256=kxWPEzcxzs0jhnzOEohSgQEj98l9IkYAN3f_rKkLpNI,4101
|
|
284
|
-
sphinx/locale/sr/LC_MESSAGES/sphinx.mo,sha256=Q6_UNU_LhjqHf6NS0zycaI4bFIalpJ5NbyOxvo0SM3A,9125
|
|
285
|
-
sphinx/locale/sr/LC_MESSAGES/sphinx.po,sha256=fH86SmQiMDI1lS-rzyGDfcIZJZbZKCn_L7K9abLTA2I,129371
|
|
286
|
-
sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js,sha256=Z01sM4MXcFYqZWASEGw-g7nHdsNBC-pB0f2NTGVQ55M,2380
|
|
287
|
-
sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo,sha256=RHddueinww2sESLXJSxTeou7QDdj_J0RdC4hAuX1miY,584
|
|
288
|
-
sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po,sha256=8LkYoGUZ4MERUCJOyzhA_RWmSTnViRVPeXCKwmiSSKE,84313
|
|
289
|
-
sphinx/locale/sr_RS/LC_MESSAGES/sphinx.js,sha256=8toTx3eNMhTrEfaO1fzzYSOSaTXMdHZ-Gtxp55BIweQ,2382
|
|
290
|
-
sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo,sha256=JpEMrepRsBBOUPPr67S8YYjyCF_CGG7KK8h7cBaknbQ,579
|
|
291
|
-
sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po,sha256=3CiWkDY6uvDbOc2qo5qXVVzVFVGJssJt7MXhVleAhas,84308
|
|
292
|
-
sphinx/locale/sv/LC_MESSAGES/sphinx.js,sha256=sYbEozwp12g5BpvZ1epVdXQeVsBOe4crC7AXxg8VWqI,3261
|
|
293
|
-
sphinx/locale/sv/LC_MESSAGES/sphinx.mo,sha256=hUHhrTUrfdl6LBeeMn9ufkDo_qbjLl06yYAWtVwKup4,6376
|
|
294
|
-
sphinx/locale/sv/LC_MESSAGES/sphinx.po,sha256=hJPSbg_u-8IXVjsM0RjnRr5ikPzL3f4XYFOAJ0vP2Os,127117
|
|
295
|
-
sphinx/locale/ta/LC_MESSAGES/sphinx.js,sha256=Z_VSkp6AQYsRsJceRKXMWp8pxxizmTbxCMbU3GLrxH0,2300
|
|
296
|
-
sphinx/locale/ta/LC_MESSAGES/sphinx.mo,sha256=ZNLx56n-dKayAnZvnUqT4UhZ2IIvTYFv-ajKZ-LYKkw,647
|
|
297
|
-
sphinx/locale/ta/LC_MESSAGES/sphinx.po,sha256=tuMT-0MUfi38EobuWb79Cn-e98FXinhM6yyf-tT6Uz8,84381
|
|
298
|
-
sphinx/locale/te/LC_MESSAGES/sphinx.js,sha256=Xla07Tz_nhkxy7nQ7LRuL4dbA7KYk73gmACHGJSYwSI,2301
|
|
299
|
-
sphinx/locale/te/LC_MESSAGES/sphinx.mo,sha256=E-0mwJxPnV6jAwp20CBWoQm3aeSj-FEwwwHbWU-uqgM,489
|
|
300
|
-
sphinx/locale/te/LC_MESSAGES/sphinx.po,sha256=u-yaWLJOMKpSWcW2w_g3MjiX6BCdnmO52c77oGB2XLE,125273
|
|
301
|
-
sphinx/locale/tr/LC_MESSAGES/sphinx.js,sha256=OwNtUbiPeVhzPPw-J1PQSibsbzVJrKQS8cxIw8XcWG0,3917
|
|
302
|
-
sphinx/locale/tr/LC_MESSAGES/sphinx.mo,sha256=UR7hOQhvRJPC6QAUFx2hQ8yZMFBSR4kjTL56VfBhde8,54525
|
|
303
|
-
sphinx/locale/tr/LC_MESSAGES/sphinx.po,sha256=_WfsFfYlzzuyFPj543z53co5hdQPRCBVPCbVopD9t88,149394
|
|
304
|
-
sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js,sha256=XFdZThdcvbDg3BX6v5UuTgyg2038f1LCTG44CCXH_w4,6232
|
|
305
|
-
sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo,sha256=pT14gTeg93hYugFRtR_m_2rufHjz4ETTyG6clEyRhiY,6220
|
|
306
|
-
sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po,sha256=Rya7V97fVQFd1doQB6vktw_h6qa-BzJpTI7DpvIw4q4,128075
|
|
307
|
-
sphinx/locale/ur/LC_MESSAGES/sphinx.js,sha256=BtV5qhv5md_KV9uJQxKiSkGosKoWfn1HqbhVO2PE1ks,2301
|
|
308
|
-
sphinx/locale/ur/LC_MESSAGES/sphinx.mo,sha256=tDrOmfjTXrALVgzmk8YDyYxSTh44Oi3Zht6W8MnBt3A,487
|
|
309
|
-
sphinx/locale/ur/LC_MESSAGES/sphinx.po,sha256=K9k45THTrDTzVoXENasEtACFmby-yJ3fzdMeD1kTq1I,125271
|
|
310
|
-
sphinx/locale/vi/LC_MESSAGES/sphinx.js,sha256=3X3K-5V-B0hnJv9G5s3krp9L4RzlpDMvQSRjus9wEVI,3488
|
|
311
|
-
sphinx/locale/vi/LC_MESSAGES/sphinx.mo,sha256=wSVfEev8_6im2y1NnpFuFT0ouSyTdT6g6USLdvtljgU,5644
|
|
312
|
-
sphinx/locale/vi/LC_MESSAGES/sphinx.po,sha256=PAWN8MT3I1OCo_4sUaSvwCB3L5P8RWYYBZv0tvfxUaU,127219
|
|
313
|
-
sphinx/locale/yue/LC_MESSAGES/sphinx.js,sha256=kwn6FSWW3SBKLOIYYSpXldmsNy4LVuEWouakdC1Ipww,2295
|
|
314
|
-
sphinx/locale/yue/LC_MESSAGES/sphinx.mo,sha256=1oyxD7U2Fxdfob-S8fYergGx4_cEyfQ5nB_c9_S7SmQ,487
|
|
315
|
-
sphinx/locale/yue/LC_MESSAGES/sphinx.po,sha256=0FVcAkSKV8pl6r88t24Zk04HmtZpRJ8N6xX-fyd-Am0,125271
|
|
316
|
-
sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js,sha256=Ms4qOciN2sxV8xmIBFKsXOQEfcXf-GfhQ6kHsbkHPVs,4318
|
|
317
|
-
sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo,sha256=I7m3GDvtssnuSn4veCuX9tEOqnI_b6NZcMwbhB9XyNE,73260
|
|
318
|
-
sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po,sha256=w8pU8agHA3FVklqO64Vap5vP6eiJXWGfQOOr1tvenGM,116867
|
|
319
|
-
sphinx/locale/zh_HK/LC_MESSAGES/sphinx.js,sha256=ZbQAiim_q3ynWkqeCt0-eZART7CoNZXDi4URAaJFyzo,2302
|
|
320
|
-
sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo,sha256=pD1BvYd4rmHnbhZaYkzFKOKn5xPLLBxnXY9zt6Sc3Qo,501
|
|
321
|
-
sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po,sha256=L8D21e_3tCwbhNC_oLAeyHOdaIHuMulUVYqrmSJdSNs,125285
|
|
322
|
-
sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js,sha256=-r0BbhjQqfdvuvhGAeeDoIxRG1-gfzYE7snWC4qli_c,4466
|
|
323
|
-
sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo,sha256=t0SO9vwOMwi98UFrtJifPBVZP0YNNu7QXuls-MUQnyM,78188
|
|
324
|
-
sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po,sha256=DTbOO6hqkZO5GkkMGUdgo7Oobg54DKH1L4HtOhhynws,157325
|
|
325
|
-
sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.js,sha256=Tt2nMAt1cVDpCu8DzEZFQ0cd8HP4ZS8s4A6qG_gMwfI,2302
|
|
326
|
-
sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo,sha256=aj9VeiprsBi1AEWwjglShQdiK9gfrESLdk-kq4FzHVU,516
|
|
327
|
-
sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po,sha256=bXzeN7TrhxNgSob8z5PnVysQamnBTJFlYko71ccEWlM,125300
|
|
328
|
-
sphinx/pycode/__init__.py,sha256=dgOyw_XVGDMTH6G_GfDfvruivkAFTBMVJeYutC7HvIE,5663
|
|
329
|
-
sphinx/pycode/ast.py,sha256=GWBb2Yhyn8iSiij0BUpOqVnGkG5pUileIFJZl82ycPY,6916
|
|
330
|
-
sphinx/pycode/parser.py,sha256=M7mwtgV0qmcLJtAbX97XhNrlSrInIZI9uB0IlA4rbt8,21556
|
|
331
|
-
sphinx/search/__init__.py,sha256=GYIHXNV0rQnaxS3xM7zwv3CENGzWbkwDdkVPHd47RlQ,22645
|
|
332
|
-
sphinx/search/da.py,sha256=V1MB6Fm22pDr6DqMe-EsDjDS4wEjEsakyjtQbqt0Oe8,3587
|
|
333
|
-
sphinx/search/de.py,sha256=BD0sSdQAzUOwhjHKxXkl5P9Dgh_dThF9feBXQ1iFOQA,4663
|
|
334
|
-
sphinx/search/en.py,sha256=vLe7P5KcRcNMvli9CYqhXlyN__qvm_RbyLOAghaFfPM,4924
|
|
335
|
-
sphinx/search/es.py,sha256=PxcVYxsvhmNiSAQpUFVbZI6flAm8N0wb5a3fOjZJIn8,5749
|
|
336
|
-
sphinx/search/fi.py,sha256=VReQhMJBIU7y3qpdgUr49k9-JUwWPydC4flFUktLs3o,3233
|
|
337
|
-
sphinx/search/fr.py,sha256=Z_O36WukUnzPsSsS6KCD_y4SDG3iFgQUGlKTEsQj7ns,3464
|
|
338
|
-
sphinx/search/hu.py,sha256=UxmuM53l_vjFVe02ST523_pdwux5iaLhYNok9R80zcs,1975
|
|
339
|
-
sphinx/search/it.py,sha256=Vlx3ogpPFVRdcmCF1MAQz3hBus3MqCiuAQ_GqnXJ9gk,5115
|
|
340
|
-
sphinx/search/ja.py,sha256=4DXJTO2rknkLCr5HC59W5vz6FOrexejOgPOCqM4oGwA,30938
|
|
341
|
-
sphinx/search/nl.py,sha256=dF1PwVLvBx0BiZLUBRPP_tUugzZ719QyCoMoVToWYzM,4597
|
|
342
|
-
sphinx/search/no.py,sha256=Yh4BM3hSxTLT6YrEPd7CWiesaITWQJEGLBT1Ms2QFMo,4919
|
|
343
|
-
sphinx/search/pt.py,sha256=7etlZN-aAjQDSczgQnWPspa49jJwmwu2JFy3uvQaQ4o,4674
|
|
344
|
-
sphinx/search/ro.py,sha256=MRcbkLWue6jEuKwM7k7_IYOdIZMO0bH36CyKcMm6yc0,582
|
|
345
|
-
sphinx/search/ru.py,sha256=-qy48aaHt_q-azOmTIaujPU34Rg3irLbkH9XkYfpt7U,7931
|
|
346
|
-
sphinx/search/sv.py,sha256=EYpxKTU_ptTLV5B091QO3vSGcd1xR-LlMTptTJUH398,3462
|
|
347
|
-
sphinx/search/tr.py,sha256=QWSceKbNjMCSkv_8Tz7UTTreIwTNtMKFvo2P81LYZ_0,576
|
|
348
|
-
sphinx/search/zh.py,sha256=JEjmOvossOGuZzPmzAAZ9Q-Ofrb4iHhNLCcOZa-KWJ8,6160
|
|
349
|
-
sphinx/search/minified-js/base-stemmer.js,sha256=A_tSOI9F30VjUWOoXxSW9tuyeYAw4iemUS7rGCKROOE,3594
|
|
350
|
-
sphinx/search/minified-js/danish-stemmer.js,sha256=jZxzX8AJMWwmA55-XE9x0MA8jeWp4VslFGe1y29mEQE,3123
|
|
351
|
-
sphinx/search/minified-js/dutch-stemmer.js,sha256=UEIU4hOLfXsjl0Nklym2n04Wnik9Dpj0XU2O2CFzeJ4,5529
|
|
352
|
-
sphinx/search/minified-js/finnish-stemmer.js,sha256=trE_JwUTrmv4df6YGSxTTLXJHS9bPNZB0baB7lep8nw,7529
|
|
353
|
-
sphinx/search/minified-js/french-stemmer.js,sha256=xvsdvmik6SHmY79pYbjgDJsCm27DiSbKQbG9x1mH1lc,11571
|
|
354
|
-
sphinx/search/minified-js/german-stemmer.js,sha256=sguYDOHskMOl83P-yi4SNVpHsAV36ejEIxE4wApBqO8,4669
|
|
355
|
-
sphinx/search/minified-js/hungarian-stemmer.js,sha256=XxzVQvRYRy6-EYY-mSd0XMCtmkjh1EVZD2ssIW1Od5M,6614
|
|
356
|
-
sphinx/search/minified-js/italian-stemmer.js,sha256=4W2fuUWpKED3JabuoaF4LVCvZ8CYFSU1euLrQ4rGAug,9100
|
|
357
|
-
sphinx/search/minified-js/norwegian-stemmer.js,sha256=m1hsFpw_qLeSLn6M4uTmEd6ONXrqOcVDFpTGbIFLAbI,2594
|
|
358
|
-
sphinx/search/minified-js/porter-stemmer.js,sha256=Cn8y4hmx7lGWdxM8szTF2d-T0L28PhJs4hyF7BAadLY,6439
|
|
359
|
-
sphinx/search/minified-js/portuguese-stemmer.js,sha256=FO5TuH5GMYeCH7WL8nmp_ayWVmwVhyVSBH-oPW6rKNA,8373
|
|
360
|
-
sphinx/search/minified-js/romanian-stemmer.js,sha256=N1nSDw6kHdGhy7qAQcE9Y7tQV2KH4_f0ZBKe-uWgA1A,8333
|
|
361
|
-
sphinx/search/minified-js/russian-stemmer.js,sha256=5VW94udoMboF2nDe2HcynPkxTdw_Ic9AwfdvJ4G4wro,5735
|
|
362
|
-
sphinx/search/minified-js/spanish-stemmer.js,sha256=5jR2zVYGrRxxvtOJpQZDTi0g8MXPy8OidfGMTUORT-8,9121
|
|
363
|
-
sphinx/search/minified-js/swedish-stemmer.js,sha256=HB7BHLws5lHugK2Uiiy0WE-645wyfB_gHG6knhtwPaA,2654
|
|
364
|
-
sphinx/search/minified-js/turkish-stemmer.js,sha256=d-qpA4TPVnAgIa3lYkExc7ANOL05gfzv4OwLOCPr7FM,19972
|
|
365
|
-
sphinx/search/non-minified-js/base-stemmer.js,sha256=p1yDUfInSXXWENLEYn3vIFDjLwlDt-PsRYWPXQyukJ4,8133
|
|
366
|
-
sphinx/search/non-minified-js/danish-stemmer.js,sha256=RC6nJVNfBd9vCYvXzfHtj1qWdyPXsHdJp5LkfiA4ByU,8134
|
|
367
|
-
sphinx/search/non-minified-js/dutch-stemmer.js,sha256=GVleiu_DOS6whs_UQC6goPL2uVOQ6boXZ8qPYPIm_fs,19495
|
|
368
|
-
sphinx/search/non-minified-js/finnish-stemmer.js,sha256=YsR6RU8VBO3LRvRlvI3PkYLCx5sLUmQOTBoRLAkq8PY,21286
|
|
369
|
-
sphinx/search/non-minified-js/french-stemmer.js,sha256=zd03h4arV1Osk5K5BQYjrA_rf8Kn7E9ZUHx788YwpLg,42080
|
|
370
|
-
sphinx/search/non-minified-js/german-stemmer.js,sha256=le1xfXlXoA0Ckbq1Qpz-gMKgmNo2o31LxEqycssU3ls,17647
|
|
371
|
-
sphinx/search/non-minified-js/hungarian-stemmer.js,sha256=o-0MAquF9fjGkxWxBcXxXoGDDvFxcTg9xp59f1nLwCU,17564
|
|
372
|
-
sphinx/search/non-minified-js/italian-stemmer.js,sha256=v-ba0C9gwLQFwnLqWECJxizVdeCmsecw-QjEl4odF_c,29065
|
|
373
|
-
sphinx/search/non-minified-js/norwegian-stemmer.js,sha256=FhXS3IJfkUoHkhUQD2CFqAzYfmqhaLR9w5rOs8ofw8U,6870
|
|
374
|
-
sphinx/search/non-minified-js/porter-stemmer.js,sha256=cewNoKiyT4U7ULQjsKozR_BkY_e5uLjSypSuR5TzPa0,20391
|
|
375
|
-
sphinx/search/non-minified-js/portuguese-stemmer.js,sha256=jjxakqKySILfrtZhegy_rrdCAqJeFf-kcZai9mVapRo,26718
|
|
376
|
-
sphinx/search/non-minified-js/romanian-stemmer.js,sha256=wWsP9QEXzgXt_5zbPLzHU6usKYryKTJ4PY0GbSw3k7E,25006
|
|
377
|
-
sphinx/search/non-minified-js/russian-stemmer.js,sha256=NmjTRmuHDVnU6cHs_awqijFxeDeH8AU5suHENRJNpqA,17996
|
|
378
|
-
sphinx/search/non-minified-js/spanish-stemmer.js,sha256=GbUZxK_uWCl8lXOapl_wFLyR3CvIFvq7-1JKFUX3a34,28534
|
|
379
|
-
sphinx/search/non-minified-js/swedish-stemmer.js,sha256=t6B9fC0VVj8l6CUupj9aVun5kQmarrmuWOiE5B5Vhdc,6851
|
|
380
|
-
sphinx/search/non-minified-js/turkish-stemmer.js,sha256=YjwmOETgp4AhtbrN0YRhX65lPJx5EYped1pkOafq6_w,77511
|
|
381
|
-
sphinx/templates/apidoc/module.rst.jinja,sha256=P5eG-sLjAYsCuqWk0YGAo8YxzPnGHO18rRMwjlbFTBU,196
|
|
382
|
-
sphinx/templates/apidoc/package.rst.jinja,sha256=Ra-lunZcMyDtrb6vgrfAnBcBW4eFMTEIyg12fSe9h4o,1173
|
|
383
|
-
sphinx/templates/apidoc/toc.rst.jinja,sha256=NROUR4FSs8FWyznK0w9omzDZJi34hjwZDoX_FJBU39s,128
|
|
384
|
-
sphinx/templates/epub3/container.xml,sha256=QW6wKyMFoOh1BJR5Ob3qzMkyUs44wp_SH7krdnLDvoA,246
|
|
385
|
-
sphinx/templates/epub3/content.opf.jinja,sha256=G8Zv7v9zbASR_kR_YQpAlwPk6bztALEDcgZNPKTEITQ,2127
|
|
386
|
-
sphinx/templates/epub3/mimetype,sha256=5GjjUNEUPrZI9gx7C9YDEQHsBUSjYcp07O8laskB9Is,20
|
|
387
|
-
sphinx/templates/epub3/nav.xhtml.jinja,sha256=3hbruygCx3hXdmAONL1sUQO5KoLq3EvRlERI6pAid1c,629
|
|
388
|
-
sphinx/templates/epub3/toc.ncx.jinja,sha256=F-UohalUH2EpRVUq8x0BcQfIM14IQJDEbIASwL6_rjg,743
|
|
389
|
-
sphinx/templates/gettext/message.pot.jinja,sha256=2zeqrPZyWKKZcr_eWy0D42ka0kuK7bf7DeVkjAh3rpE,875
|
|
390
|
-
sphinx/templates/graphviz/graphviz.css,sha256=jGMgn-yBAnk39RtO9D3yQB2K0gI3y8g_eV3WJZgGFKY,299
|
|
391
|
-
sphinx/templates/htmlhelp/project.hhc,sha256=_WB8H6jvg7j0Bx5pGIZK2-o6gck2lb1XZvMQ0ZKj16w,864
|
|
392
|
-
sphinx/templates/htmlhelp/project.hhp,sha256=HqMMyRMpWR4-Das2zT4zK3ITfPzJcyCi46_I_xyeox4,570
|
|
393
|
-
sphinx/templates/htmlhelp/project.stp,sha256=v50LjubehGTAYJcxyTNZl4ZetYrs3tOMkLaQk-wdTwU,165
|
|
394
|
-
sphinx/templates/imgmath/preview.tex.jinja,sha256=AUWBZkG1_w72KbpeIu42rYPlUV1J0i5JPWw3EIKAlH4,397
|
|
395
|
-
sphinx/templates/imgmath/template.tex.jinja,sha256=n38wynRrTKSciJ-aljpZe-DiayVj83Vxa2kbB-tIOEs,321
|
|
396
|
-
sphinx/templates/latex/latex.tex.jinja,sha256=RmUHgiqpb9bVdXxfz_-3b_6l6UgY5hkRkJOg-INgqnE,2986
|
|
397
|
-
sphinx/templates/latex/longtable.tex.jinja,sha256=VIuSxSPVSLMhv2qFd1rPmuWJibGEEfcE_gCvnfAbymM,2156
|
|
398
|
-
sphinx/templates/latex/sphinxmessages.sty.jinja,sha256=N9Tszwtp1E57mz7RfpQH2AvjpAHUPVREY-nNozxDRfk,944
|
|
399
|
-
sphinx/templates/latex/tabular.tex.jinja,sha256=xxvO5DhX1EMuv0VS9oA9B5mrYa8IzWKQWsHtRi8IYBo,1406
|
|
400
|
-
sphinx/templates/latex/tabulary.tex.jinja,sha256=y6z1JMtVHlKU7Am7jm8Sr6hdl_6I5Ev9f4AEKmhQcP8,1420
|
|
401
|
-
sphinx/templates/quickstart/Makefile.new.jinja,sha256=KobDbRiR48StwxroIgIth_rEVculGpA3kA93VMnM5Hc,656
|
|
402
|
-
sphinx/templates/quickstart/conf.py.jinja,sha256=NESS5FSezA-nrvw2c6AGjTBV3zt7VSqIwAtD9e3YVCk,2129
|
|
403
|
-
sphinx/templates/quickstart/make.bat.new.jinja,sha256=WUv8Ogd_Pk_P2X3F2YMY5HfNCZVlAGfIDBIt4K36KgY,787
|
|
404
|
-
sphinx/templates/quickstart/root_doc.rst.jinja,sha256=LN1_-BHgdF953u_Fie-aoyWc8WAAKO7O7ZLTQyamzPE,553
|
|
405
|
-
sphinx/templates/texinfo/Makefile,sha256=PCeGkxsBfz8gCLOf7RfwSjS0AyvubOF-_ykkrInk5FU,1423
|
|
406
|
-
sphinx/testing/__init__.py,sha256=eUkVgaQPTQJbIlJtVa9q3AKCG14Y_TrAufbKtyy6YJs,171
|
|
407
|
-
sphinx/testing/fixtures.py,sha256=cLnt3zwwR2q1XEt4MLaoftZ9QK-piq4BaBFqmQwRrSM,7688
|
|
408
|
-
sphinx/testing/path.py,sha256=wAOu7mAwUem2a3AdtpoP9ydlg8M3IOsre2PG1W1E_go,6696
|
|
409
|
-
sphinx/testing/restructuredtext.py,sha256=TOl7a8HvqzKhPSxh3YHpax9_wrYxJUKmuQPwLkzqHbY,1159
|
|
410
|
-
sphinx/testing/util.py,sha256=mzdt-eM2MHaHkIUKfEt01gdAEsJkrDWzZOXMJ4BewkY,9639
|
|
411
|
-
sphinx/texinputs/LICRcyr2utf8.xdy,sha256=I_eroJJiDZWFHCzmeqvGPbziOJUFlOddmhjkgKwQZPE,4366
|
|
412
|
-
sphinx/texinputs/LICRlatin2utf8.xdy,sha256=C6MbfqokFyKTl5dBpxW827Bl6AfhPtivp1UTW7IyjLQ,10188
|
|
413
|
-
sphinx/texinputs/LatinRules.xdy,sha256=qCpjGrmo6ZdChkmNsQPU83im7pAqFvAZQDUMPM5hxFM,18890
|
|
414
|
-
sphinx/texinputs/Makefile.jinja,sha256=8l0u5ewzHVfp6WnTDWQRUPBQekwOCzgR6JIwYf2OPEI,2442
|
|
415
|
-
sphinx/texinputs/latexmkjarc.jinja,sha256=MAEuOfgjE56gBm5tt9pr3x1dLkaYQRVvtLKKOyK_Riw,695
|
|
416
|
-
sphinx/texinputs/latexmkrc.jinja,sha256=CaSKfWWrcA-l0BMSxa8h3YFf-C_hMjsNs2fe5Z9XEwA,1104
|
|
417
|
-
sphinx/texinputs/make.bat.jinja,sha256=ZgR_dDOU01AT_VFmD4L97dbpTDSUGHksLjVfTmBj2gg,1041
|
|
418
|
-
sphinx/texinputs/python.ist,sha256=G47jS0AbTU91qQ7ZEo8qwX7rGAIiyyV1DlLPaO_wIVE,392
|
|
419
|
-
sphinx/texinputs/sphinx.sty,sha256=hVqYk4TTy2Z51_OuPEHwQrgoa52iBUJYh9E-ZDXO5r0,50659
|
|
420
|
-
sphinx/texinputs/sphinx.xdy,sha256=QWncK0Ie81AneS7M6R0kbOYv2tebzm1jluAXYnxS4b4,9475
|
|
421
|
-
sphinx/texinputs/sphinxhowto.cls,sha256=IzFjVXa79iEvsI5q4sUCEcdyYE2gMbXIh50gt9QYCI8,3256
|
|
422
|
-
sphinx/texinputs/sphinxlatexadmonitions.sty,sha256=8_Nzb-I_Bd94ZXzlOlpCH6LoLoPpA3UdI_Te5GngNEA,18222
|
|
423
|
-
sphinx/texinputs/sphinxlatexcontainers.sty,sha256=Yr6s9pSplYLCY1AlGcZGY7EBFZ3b90bnc6rpodFd8zI,901
|
|
424
|
-
sphinx/texinputs/sphinxlatexgraphics.sty,sha256=LLWyldouj5KVmai--wXKKjzrdawh88B0Z_4GuCHj1SA,4840
|
|
425
|
-
sphinx/texinputs/sphinxlatexindbibtoc.sty,sha256=omPkDdFnCKOMlEo99vZRc6jvPrEiRsel2dHhXglZ_Zs,2066
|
|
426
|
-
sphinx/texinputs/sphinxlatexlists.sty,sha256=u9i4z8mlkEOTHOxfLDd4BJHuITk_W1ssvrvW-Eo8AUM,5139
|
|
427
|
-
sphinx/texinputs/sphinxlatexliterals.sty,sha256=kxWzjUushCimnlj9rEAiTzCB6M04YUZL2lxASUtrOvE,45679
|
|
428
|
-
sphinx/texinputs/sphinxlatexnumfig.sty,sha256=XfjnXVVLJCQHVJTWi1f9wfLFDQ10-Shh37hb82uJS2k,4532
|
|
429
|
-
sphinx/texinputs/sphinxlatexobjects.sty,sha256=8d2oOwnCVJePQIBSovwvLT9BCs-6HjCmZpjPIYg1CaU,14354
|
|
430
|
-
sphinx/texinputs/sphinxlatexshadowbox.sty,sha256=WOPHKtiNfv3vDun8N7ziIxprd0Dk_G2aYWFxDNtDDWE,5066
|
|
431
|
-
sphinx/texinputs/sphinxlatexstyleheadings.sty,sha256=jDiLn0iEnclKADiAqjLoxdpyhu_MgwQETOWDgSkMO7c,3445
|
|
432
|
-
sphinx/texinputs/sphinxlatexstylepage.sty,sha256=fGUYalNjMZq6HTFzP1-3c5VhUfZ63LhSo48Q4F6GyK8,3064
|
|
433
|
-
sphinx/texinputs/sphinxlatexstyletext.sty,sha256=tbEMGqHjTVXW7PVzTNNcpzi3tFQPFcXqCSxQcjOs53c,6881
|
|
434
|
-
sphinx/texinputs/sphinxlatextables.sty,sha256=TLXNR5Ua92ZK1M2Mkohb7WLVicB4iYE6yj5DvhqniTs,57644
|
|
435
|
-
sphinx/texinputs/sphinxmanual.cls,sha256=XyBvfQQOEbjSXnY6ckCDRUFou2TzEikpMCZSfA2XX-o,4241
|
|
436
|
-
sphinx/texinputs/sphinxoptionsgeometry.sty,sha256=D2pTqE7L4wwt-UqbTZWySUksJ1Yj12YSjHv36E9tJOA,2061
|
|
437
|
-
sphinx/texinputs/sphinxoptionshyperref.sty,sha256=wuvlb09FedUwCyOAzup8_iuabDeaffIFwVFcg_mC-BY,1094
|
|
438
|
-
sphinx/texinputs/sphinxpackageboxes.sty,sha256=Gak07JiZONSDM4xP4kOHEeoaF0Z4ztzHgzfa-I4o8UQ,36106
|
|
439
|
-
sphinx/texinputs/sphinxpackagecyrillic.sty,sha256=LEJ6Ost3RzOCpmit4R4AXRXLuOnVY7EoUtDPG9EcwZo,2590
|
|
440
|
-
sphinx/texinputs/sphinxpackagefootnote.sty,sha256=WGOIayYISdVRE02yvbilskCk2gJGIyb87ccYUVjSU4s,15330
|
|
441
|
-
sphinx/texinputs/sphinxpackagesubstitutefont.sty,sha256=Hs_O33bV5FtSOSlyoGgWUhc4wAVW_dU95J12YuOKr9s,755
|
|
442
|
-
sphinx/texinputs_win/Makefile.jinja,sha256=3W_FMcGHsfj-OKcCy73gXO9EX5FCrVAFhhP0nUkMaGA,2544
|
|
443
|
-
sphinx/themes/agogo/layout.html,sha256=-6oU_gxBK_xJP0qW_t7IG3bcAEHpxH31a53aqXd4mmo,3318
|
|
444
|
-
sphinx/themes/agogo/theme.toml,sha256=mBku0dxk8VkMkBQ7iFKnTeDgsEFjQqgdBZ-gTGbcL-8,541
|
|
445
|
-
sphinx/themes/agogo/static/agogo.css.jinja,sha256=hIERF51qslya6eFA76R875AzL3HGh43q6OuZGzEDVGM,9236
|
|
446
|
-
sphinx/themes/agogo/static/bgfooter.png,sha256=z_t-aaUOT_MNY6uGyzqujaB9_OnfSwk3YamUO6B2n44,276
|
|
447
|
-
sphinx/themes/agogo/static/bgtop.png,sha256=qFg8jKbynip2y67MhLJmSiL8gmsHHU6ULgjhDsmsGyM,266
|
|
448
|
-
sphinx/themes/basic/defindex.html,sha256=iug5P1v-pZjpy2MVfJmkNfhrxwsfq0xj6UJJMTefWU8,1636
|
|
449
|
-
sphinx/themes/basic/domainindex.html,sha256=2UFmQDjUXFlD3KjmijOXu4cTbBHp2fcVwKHlA3TyJqQ,1892
|
|
450
|
-
sphinx/themes/basic/genindex-single.html,sha256=xL7w62W7nke8WQxqPxIr6WmYHqReyWsj-wROMZqvf1M,1878
|
|
451
|
-
sphinx/themes/basic/genindex-split.html,sha256=fktVjhi8IP1KD-YOE0fwK5_IrJZr-a1qLbp1RyTe7lA,1210
|
|
452
|
-
sphinx/themes/basic/genindex.html,sha256=kejOCSSnxRnH3Cb0Om6KChg8c_56GZ5KE_xebXobn88,2069
|
|
453
|
-
sphinx/themes/basic/globaltoc.html,sha256=Ro5_1kpElTbb-1Wsn7K0LmiQFQMB-8tVz-Ex_2zAINs,432
|
|
454
|
-
sphinx/themes/basic/layout.html,sha256=Z3uKEY5gDF22NIeMZBJeX-sKFhTNtJuu72IoN7aWrCM,7561
|
|
455
|
-
sphinx/themes/basic/localtoc.html,sha256=q30eI9hgQ6uRYuxL5TNEl8FH_x2nFCS0EFhmHyqL_jM,370
|
|
456
|
-
sphinx/themes/basic/opensearch.xml,sha256=QYkml4rshoqDE8B-RN9QE0KlIEItHaQnnaSNF5ZKPVg,679
|
|
457
|
-
sphinx/themes/basic/page.html,sha256=xd5xQTpDhfnfigMC73pszhONQL3Fq1nYxtBv8DkUeWo,273
|
|
458
|
-
sphinx/themes/basic/relations.html,sha256=ch3vCWAZo3kLBklUrBUo2A5HwdFUJjab91Lq-P5vJn0,652
|
|
459
|
-
sphinx/themes/basic/search.html,sha256=K6DLj8G1YzW2TNS7Mx4cZL1d-i7sZCig9JOAylHqGsk,1544
|
|
460
|
-
sphinx/themes/basic/searchbox.html,sha256=wrPsi7ijd7el1jQBRKBbqTnHs2S_mcn84vsaRnwNGgM,815
|
|
461
|
-
sphinx/themes/basic/searchfield.html,sha256=oy3qjap-R23_r0MbzNYaOk5_sSzplkvWDHQRHIOnKeQ,953
|
|
462
|
-
sphinx/themes/basic/sourcelink.html,sha256=RjDYHuvCMCPryNREAZGsq5pUmM0BF_zRhLoD9s7CKvs,544
|
|
463
|
-
sphinx/themes/basic/theme.toml,sha256=JoBqyxPdrfUduBTLhWGzHkKlvW8UOXFncO0nMgGaJR8,449
|
|
464
|
-
sphinx/themes/basic/changes/frameset.html,sha256=U9aLuXX3myhMYcWHTDU9cjlonEGDQbQlhJjbVgC4MK8,466
|
|
465
|
-
sphinx/themes/basic/changes/rstsource.html,sha256=5lO9-HvfStJze-9sJcsv2RLnvU_KhzDb1lYsYPHtY2Q,485
|
|
466
|
-
sphinx/themes/basic/changes/versionchanges.html,sha256=iHd7nfHfvsIB3NN-t2M8MzlXvobX5sTSedyVbU4qijY,1306
|
|
467
|
-
sphinx/themes/basic/static/basic.css.jinja,sha256=tCz6e82KAc6RP3uP3iubcujTNLMw1skpePJzRjEBJsU,15174
|
|
468
|
-
sphinx/themes/basic/static/doctools.js,sha256=gcsto8KE5CmhpjqyiiC34wvOuOsVVqFUyMusC0zneVs,4472
|
|
469
|
-
sphinx/themes/basic/static/documentation_options.js.jinja,sha256=7Fhmczx_ea0A1SIJiztvvBtIqRdPA_SQg4o7X7nUGbo,581
|
|
470
|
-
sphinx/themes/basic/static/file.png,sha256=XEvJoWrr84xLlQ9ZuOUByjZJUyjLnrYiIYvOkGSjXj4,286
|
|
471
|
-
sphinx/themes/basic/static/language_data.js.jinja,sha256=RlukAHyQZDRlm71iAprSkXXn4COabQ3iR3JeMwS1gvc,676
|
|
472
|
-
sphinx/themes/basic/static/minus.png,sha256=R-f8UNs2mfHKQc6aL_ogLADF0dUYDFX2K6hZsb1swAg,90
|
|
473
|
-
sphinx/themes/basic/static/plus.png,sha256=VBFRmblqEwy6AhR8R8DetD3Mm58ItRYruoZCs0mArGM,90
|
|
474
|
-
sphinx/themes/basic/static/searchtools.js,sha256=irrDXfNjDCA_rVEOZvL54HJaeQgLi-lhEeI4oHFQCAU,20842
|
|
475
|
-
sphinx/themes/basic/static/sphinx_highlight.js,sha256=CWIx6ch9-A7DJz2pxbcbyBUDIGcmoHpN1N5Ewlb_hZw,5123
|
|
476
|
-
sphinx/themes/bizstyle/layout.html,sha256=3pNc8itpHS1gE5E8APG27ckT94rjOOlY7n2pgZr5cbo,587
|
|
477
|
-
sphinx/themes/bizstyle/theme.toml,sha256=afzW6RM28PtJNig2lrwPs5ilt21gQWTnppTFhpGSkR4,184
|
|
478
|
-
sphinx/themes/bizstyle/static/background_b01.png,sha256=dKAZdjEeter1BDKlFY7M7tPM023a-E_1suOEgivM3bM,78
|
|
479
|
-
sphinx/themes/bizstyle/static/bizstyle.css.jinja,sha256=osIYxWGmGWO0emmdK3ljo-djzsoZNidnWMn4abztTKo,10349
|
|
480
|
-
sphinx/themes/bizstyle/static/bizstyle.js.jinja,sha256=Z9ufYlJj8tF9hsqZA54oxIK60iDgIg4TaOvnJZC8j98,1129
|
|
481
|
-
sphinx/themes/bizstyle/static/css3-mediaqueries.js,sha256=C9_0b34Q9jPR6fLvmb3nU7lry3OGsMyQLelR7DSK6V4,14940
|
|
482
|
-
sphinx/themes/bizstyle/static/css3-mediaqueries_src.js,sha256=Dm19c4nBNJ7SoCMNs6os4uXzCdw4Hc5bz1BSZTpQNSs,28637
|
|
483
|
-
sphinx/themes/classic/layout.html,sha256=VNdB1cP8V7pSnfPUOM1NLAzF2IKVjmp3kiRdc_iLB4M,661
|
|
484
|
-
sphinx/themes/classic/theme.toml,sha256=_LfcMW66ymukY3aXD1I35t6pxtRQHm9RKn8XZhotjyg,797
|
|
485
|
-
sphinx/themes/classic/static/classic.css.jinja,sha256=L6qLG-wd33BrQk4ImfDrS-DD0mQoOKwDArw5ya5HI7s,6635
|
|
486
|
-
sphinx/themes/classic/static/sidebar.js.jinja,sha256=5Iu1lNJJHZQWEk2H9_MNC8fW5Bdk1mZGqGck8Ug5xLo,2659
|
|
487
|
-
sphinx/themes/default/theme.toml,sha256=yh3J-pcXD6OJ4GcaINyAbkwrsfykz3b1kLj9-GAyDpE,28
|
|
488
|
-
sphinx/themes/default/static/default.css,sha256=89dNCfmg1cCOnvIRr-0zl6zplKOXSDJa5TvqYhJDSLE,28
|
|
489
|
-
sphinx/themes/epub/epub-cover.html,sha256=a57sWqVN1RFB9uS4zON-0KhOKKudAaQilvKS7UUKW94,693
|
|
490
|
-
sphinx/themes/epub/layout.html,sha256=YZ5Z0VpDY8kMACju-LIU8hXNOFvvGgaL86sWj1rb8F0,543
|
|
491
|
-
sphinx/themes/epub/theme.toml,sha256=SAellFHfoG1GxU03gorhb6ZZ-aJg04T3TgRN0ZNfNwQ,142
|
|
492
|
-
sphinx/themes/epub/static/epub.css.jinja,sha256=uIlFrrmstI1qypyAt1lcv6aQVYRGJGgGzg56Tm4waN4,12435
|
|
493
|
-
sphinx/themes/haiku/layout.html,sha256=JEODmkf2vd036gipIcoZw6Owj-bci15NuMSaMYMk67k,2020
|
|
494
|
-
sphinx/themes/haiku/theme.toml,sha256=09J0iNlFhxFIozw7hDydSskMsbt1-Apz2Ft2k42L-r8,336
|
|
495
|
-
sphinx/themes/haiku/static/alert_info_32.png,sha256=mAjYIs7qvBdrvtM6hX0bftr2uyNJrFjI8U79xd_XLxo,1128
|
|
496
|
-
sphinx/themes/haiku/static/alert_warning_32.png,sha256=5cJgdUFDkvtU3q2e96YqskmvOxgL3L4TbISe-DHQzoM,944
|
|
497
|
-
sphinx/themes/haiku/static/bg-page.png,sha256=Y08cunQV0X3GhJoTn3w6N7Zyzp31SHuvFVf3ofzQvKQ,82
|
|
498
|
-
sphinx/themes/haiku/static/bullet_orange.png,sha256=kFOQN1Rr_-H7MBckGc7LTFWNGUV4l97pbBjgXRMF6r8,165
|
|
499
|
-
sphinx/themes/haiku/static/haiku.css.jinja,sha256=kuxOE8LEEf47OijcS2L0aAjnVSHa_QuhR-VDsdwsmw0,7060
|
|
500
|
-
sphinx/themes/nature/theme.toml,sha256=emr2LkXJ-hJy61APlfMBghkXjFEuNnWPMjM8CZF-eMs,101
|
|
501
|
-
sphinx/themes/nature/static/nature.css.jinja,sha256=ajv_hWse4xPeiZsl4vadrGyxHV6IEkc16O_eYFoBUYc,4269
|
|
502
|
-
sphinx/themes/nonav/layout.html,sha256=TRqUdaqAnqmfSC5omP-B4qKfCiCrfsp4gBaxuXUnVLc,642
|
|
503
|
-
sphinx/themes/nonav/theme.toml,sha256=Xtco6V7vxYczS7C2VRyIdUNNXvBiZdNckGI4WfJgmQA,143
|
|
504
|
-
sphinx/themes/nonav/static/nonav.css.jinja,sha256=pqtpPQVeOIHnWY7IQKfYg8rGdAL0yJCoCRuprWAPlgA,9692
|
|
505
|
-
sphinx/themes/pyramid/layout.html,sha256=tr0Z-ehEf_ijHBJpkHLc7dr-S-lXNMdvz_NyG_aqKsY,887
|
|
506
|
-
sphinx/themes/pyramid/theme.toml,sha256=TYBO6MzZZYMxCu5tyKjP0ooxh0Bo896nstT8ymsuLaw,132
|
|
507
|
-
sphinx/themes/pyramid/static/dialog-note.png,sha256=G78pLCm314wu9VD9jZEM4eK3I75OJC--dAOdDuPgDlk,1394
|
|
508
|
-
sphinx/themes/pyramid/static/dialog-seealso.png,sha256=IO8KzTFFckCNRUE06_peJxVlYVyOKyIxhriDrCL9Yjo,1351
|
|
509
|
-
sphinx/themes/pyramid/static/dialog-todo.png,sha256=g9aIsXU5TLy9AzVEWUWAc92HuolcxjrTjDyItUY11ag,1186
|
|
510
|
-
sphinx/themes/pyramid/static/dialog-topic.png,sha256=4TVEO2gfY89RzSbdEr7mytvIPg4_GtHASPyauRjm6Ho,1798
|
|
511
|
-
sphinx/themes/pyramid/static/dialog-warning.png,sha256=g1Ev5ZQU6XOXrAS3mkRjDzpTlbrt8rhPrcfTY6ralzo,1280
|
|
512
|
-
sphinx/themes/pyramid/static/epub.css.jinja,sha256=ieWdq7xptK8YU8K0QeY5_oel9OM6EwPDTBzdvoZvwjs,5629
|
|
513
|
-
sphinx/themes/pyramid/static/footerbg.png,sha256=4AIWl0JAcWjiU7zgJQGF8Lch90YcP8nUUevgamu3Pw4,333
|
|
514
|
-
sphinx/themes/pyramid/static/headerbg.png,sha256=hvShYSBQ_yZrlrz_0-H0M9-nh_fmgkMQSrNZjrjVOCY,190
|
|
515
|
-
sphinx/themes/pyramid/static/ie6.css,sha256=K5nAcLyqlAxVes-oZ0EeNj2l5K2HtW1BgPPDQrGBVNY,726
|
|
516
|
-
sphinx/themes/pyramid/static/middlebg.png,sha256=IV8M3xf7P9ieONODDhntLOwfmPFy6vtxyyfQXN3BUpM,101
|
|
517
|
-
sphinx/themes/pyramid/static/pyramid.css.jinja,sha256=RGGIN0WP5c7dhfWljen6xm4J7O8Go6llzHpqHvbVtig,6336
|
|
518
|
-
sphinx/themes/pyramid/static/transparent.gif,sha256=k9tv8K8BwUFqTPVkP6lw5vrPdaosOKZkBAhQOcIxTjM,49
|
|
519
|
-
sphinx/themes/scrolls/layout.html,sha256=bhJfFLikHwQ8qCPC4BUVWKGDVr3W8SBFwCCp-OLYykE,1642
|
|
520
|
-
sphinx/themes/scrolls/theme.toml,sha256=3LN-1ndxyi6Vu1hbvop2OTDLY-A0T2n_w2gY02cGUF0,307
|
|
521
|
-
sphinx/themes/scrolls/artwork/logo.svg,sha256=6JVgcu8nO0I2PVaOOPtDAqnKnVoAvA2XMT0GkSvsNDA,5776
|
|
522
|
-
sphinx/themes/scrolls/static/darkmetal.png,sha256=7FotNEBbQvCMreYQ_9mkDKK_69S-o-em_2pT0wuzj4k,25238
|
|
523
|
-
sphinx/themes/scrolls/static/headerbg.png,sha256=KnQBGpfjORD7e4bOdST-aFR5rsn7ZKoT-JXEjL53WZ8,172
|
|
524
|
-
sphinx/themes/scrolls/static/logo.png,sha256=wu-Rtv5NUPHYi671ETidrJUMV3uWbrCQx81whoLQN6s,8305
|
|
525
|
-
sphinx/themes/scrolls/static/metal.png,sha256=Vm3DsxX_nWQM-SvuZQ3fBDRRcMJ2Uf-REAYTVGVlIj4,7547
|
|
526
|
-
sphinx/themes/scrolls/static/navigation.png,sha256=Y27k-Oc0dlryoj5CyD9ju7EXM9TEDrPUj_RhyfS70eQ,124
|
|
527
|
-
sphinx/themes/scrolls/static/print.css,sha256=z5VnEUbV17y2dMVWemaTUfvBOfy1sWRD45XlKozbEgQ,303
|
|
528
|
-
sphinx/themes/scrolls/static/scrolls.css.jinja,sha256=UUQ1cs8mx_RA5ygXUINuqvcroDyv7VPVS4U-VP4W40Q,8033
|
|
529
|
-
sphinx/themes/scrolls/static/theme_extras.js,sha256=CN5EFB7kO_YkQ9wLUc_15c1jFroPWd9cs9yqWphlXho,527
|
|
530
|
-
sphinx/themes/scrolls/static/watermark.png,sha256=dRaeEcta_7gtbu7JKEMk09LozEhC2Xi2vSyXiNk3_ME,44483
|
|
531
|
-
sphinx/themes/scrolls/static/watermark_blur.png,sha256=PIVyfRgcdEl3PNhTDMIbc2Gu6aVtNkXw5-4osa-uL3E,8049
|
|
532
|
-
sphinx/themes/sphinxdoc/theme.toml,sha256=UCdyDbQFQMQuw-Tdt6ZQTzPmUf5Awk9N4u89-LGmnrc,107
|
|
533
|
-
sphinx/themes/sphinxdoc/static/contents.png,sha256=l99rRWF4W-y2rAl8jcBUwTLlS6KnvFLADqrBVlj2S-Y,107
|
|
534
|
-
sphinx/themes/sphinxdoc/static/navigation.png,sha256=P_UYPDtA6_O8T5yPc0pylIgA9Z9pDRYVdsJRs0umKcM,120
|
|
535
|
-
sphinx/themes/sphinxdoc/static/sphinxdoc.css.jinja,sha256=a4CtHu34gG8pJdvYeW0_BtRi8Z2cwiYwCngvf4oarFQ,6349
|
|
536
|
-
sphinx/themes/traditional/theme.toml,sha256=62jCk65qFyUPdBmYF_9gdCJROI9Ki9UatbPK-82lVck,123
|
|
537
|
-
sphinx/themes/traditional/static/traditional.css.jinja,sha256=MRylDg8au9OFDGvCjhA9bwJGSXShJiCsMNAqeOrnda0,12162
|
|
538
|
-
sphinx/transforms/__init__.py,sha256=jDkcp0D8Da-UqlMAgquleCN6njzC4D0OY2J7MZCHgvw,17561
|
|
539
|
-
sphinx/transforms/compact_bullet_list.py,sha256=Y3Lo-Dqp4mSk826ZjqEhUYQJoi643FyaDCRKydJNM-8,2844
|
|
540
|
-
sphinx/transforms/i18n.py,sha256=KdfgrCC0RlY50_IpB998dMcIaemd9Wzu6tMKpkjcr6Y,26072
|
|
541
|
-
sphinx/transforms/references.py,sha256=WbIrhe6A5vSDRe8NXqp2o_pfvfE8HGf75-XfzS3cbyA,1451
|
|
542
|
-
sphinx/transforms/post_transforms/__init__.py,sha256=SFKX9Y11nzrksV3TnoZwTjp_zSMZqK3sb9dT_udKLw4,12627
|
|
543
|
-
sphinx/transforms/post_transforms/code.py,sha256=PdE6XgBLmKVmHtpwX8ixDMSfDAY0mds9YTYFscSQ_UY,4587
|
|
544
|
-
sphinx/transforms/post_transforms/images.py,sha256=7pCetn7M9gzBXjtt4eM3sZzOe0iW2PoVYrpnlFGW6x0,10420
|
|
545
|
-
sphinx/util/__init__.py,sha256=WFsdNCvKhBmb0cDJdxZT7BncZnHpxASpTxZny1mGesQ,9092
|
|
546
|
-
sphinx/util/_io.py,sha256=GCiCi91Au93IfqNGqkkNgTB-TAWHUTcgoQq5-CNEq9U,892
|
|
547
|
-
sphinx/util/_pathlib.py,sha256=2KACEdm07dufuvtwCJAUBShvaUXjeHm2zY3vOs6oZcw,5152
|
|
548
|
-
sphinx/util/_timestamps.py,sha256=4OkEaMTVHYpWSCHkF_nfpMKoNqxqByIMNCQhLFe5Gk8,403
|
|
549
|
-
sphinx/util/build_phase.py,sha256=vP_oJuPjl9SU7MbK-QTHBeqcs7KhQ-RoL4hNWTt-BJY,241
|
|
550
|
-
sphinx/util/cfamily.py,sha256=RkNSPzNNYh6IWp-Q97Q3xU-bazc-B-3URNHrQgFiSc4,16478
|
|
551
|
-
sphinx/util/console.py,sha256=B3qpXQk5ixv_mCfhVzeiqxdHB6ctodfbsD_i3DHcLVo,6070
|
|
552
|
-
sphinx/util/display.py,sha256=M2JXvDx8HnXvaNSHERb76i88slM9npcFPOnbf5tRjcQ,3061
|
|
553
|
-
sphinx/util/docfields.py,sha256=Vzdu3QkYToRkCf-iYtLbyAL1m6HalXThirAZvKvT-iM,16974
|
|
554
|
-
sphinx/util/docstrings.py,sha256=g__pCkpIBjCew6rP6ytJAYXgTKMKxjTdUDOaF2EDqCs,2944
|
|
555
|
-
sphinx/util/docutils.py,sha256=pSctiPPNO2GKoClRo64k2rn-I0nVDhJEBSwIGnxxeOw,24688
|
|
556
|
-
sphinx/util/exceptions.py,sha256=_ZcjI6sTQv0bLlkBu5XsD_QwUHphjKKq17391azKs7c,2010
|
|
557
|
-
sphinx/util/fileutil.py,sha256=jMeqsbnKOACNyCsuWFuyQNqQo71fqwWQbDq3RynyWCI,5522
|
|
558
|
-
sphinx/util/http_date.py,sha256=j9jvARRJrYjuIK_oR4H4dLyeCeZIDaOGCQz-8FDpufg,1626
|
|
559
|
-
sphinx/util/i18n.py,sha256=b3euz0Tn0-SnW5dgOcQ4el4ET_n4MNQVNmfgIbwW8AM,10606
|
|
560
|
-
sphinx/util/images.py,sha256=SE5HaM3BUYisjBFhUxbsD4CukGTBWEHbDXKJ77GC21E,3752
|
|
561
|
-
sphinx/util/index_entries.py,sha256=wEa55m_tez3UFNFEVuIesEQKWavANQ2O-l86k1If0sY,986
|
|
562
|
-
sphinx/util/inspect.py,sha256=IPACQc1CTyXw9Xt2znORZvLNd1xOqlBJofbT7OU8p6s,32322
|
|
563
|
-
sphinx/util/inventory.py,sha256=vxKkV7jn6RXYhsdgOGPIUG4BQkeuCGO_k0pplAZu3WA,7967
|
|
564
|
-
sphinx/util/logging.py,sha256=WokXNrpfjX7kekEE6N59MitS23DzdCpyEw0GTiQovug,20542
|
|
565
|
-
sphinx/util/matching.py,sha256=QPjNwrQTU8AJYlcn8PsdgzRA2J9XImd3qIxEmG0CgS0,5368
|
|
566
|
-
sphinx/util/math.py,sha256=oCVLqoa1de61u3yY48DzsAFZSTdAwGRbzw_-k9XorFo,1984
|
|
567
|
-
sphinx/util/nodes.py,sha256=1HFsan1mxV9lUQC83dT5DKNATRtGWeKIl9sNEaJwZpQ,24622
|
|
568
|
-
sphinx/util/osutil.py,sha256=nx02Ndf1X-mDujcJMdd5Pf0CLMgMkiWuge1_LrhOfhQ,7865
|
|
569
|
-
sphinx/util/parallel.py,sha256=G1FVaC_OMvT7xvNt5KGUzeWEnVru4luE3X8rqqQ04Og,5272
|
|
570
|
-
sphinx/util/parsing.py,sha256=3F3mbV2OjHLUnrU2trwQxKabfk_x0c8_onCKGNDNUJk,3321
|
|
571
|
-
sphinx/util/png.py,sha256=78SpKyEuQTlaHXIpnHZ3kDaTQZqhNivGcW7KXbrG7Ns,1445
|
|
572
|
-
sphinx/util/requests.py,sha256=zUS88cvmmNtsv4PU_BLY7EsZMs_MWiwz_cm5SaE_eF8,2454
|
|
573
|
-
sphinx/util/rst.py,sha256=YY2Wk4Pn1vNQAi1iDjUCYeBYGutYYo4curTpdsVcyKE,3585
|
|
574
|
-
sphinx/util/tags.py,sha256=K6tiZhx-V60aKZ4Z3ie5kasMYGGV_WPUTq8ncWlWnJM,3927
|
|
575
|
-
sphinx/util/template.py,sha256=aoyfjipov8vBwOfKGahtBRRSkwRAW_lupkWOhbFJFwk,5145
|
|
576
|
-
sphinx/util/texescape.py,sha256=eGHE_GX732SVeSHcmprXbOa2euwNh37kREwWPTY1hvY,5442
|
|
577
|
-
sphinx/util/typing.py,sha256=kVkxggN0PuvDrgflaRSZ1gdNR9shRgVgOSbJvlIr48k,22882
|
|
578
|
-
sphinx/writers/__init__.py,sha256=efGdnx4MWlPEDzXACf4Q18Oi3GTyY5Ob14I_j3XXtXc,31
|
|
579
|
-
sphinx/writers/html.py,sha256=eXf1wH9Vt-GWREN4_1tA4B0ibGRriqSnv3sPYw0gcqw,1626
|
|
580
|
-
sphinx/writers/html5.py,sha256=RZuVwQq6lPVp6SC1w5XN6xaAaPy5BdYKRGigRg8YRBk,37693
|
|
581
|
-
sphinx/writers/latex.py,sha256=6xD3EyJTDnsZLqpVGHuviEQypY6JqpZIctwFZnDcqSM,92678
|
|
582
|
-
sphinx/writers/manpage.py,sha256=7RFc0CEnUyejf5vEp9M18JnZS6lv8ZxOvq3Y2KgNQdQ,16259
|
|
583
|
-
sphinx/writers/texinfo.py,sha256=2XL6KCGBOeFCs1wu0gInQ6ALssgGvPeKlnmoSJ9ce1s,53470
|
|
584
|
-
sphinx/writers/text.py,sha256=SYlQC54pxkiF8nNJCthDwa2m7Sb2UKmRS-jC-SjFn84,43006
|
|
585
|
-
sphinx/writers/xml.py,sha256=4rj6wdeMFqR-aE6MR_j2VvdKL3cRLv_qgB8wSARkc3s,1546
|
|
586
|
-
sphinx-8.0.2.dist-info/entry_points.txt,sha256=KU_c9jqXj7yyZylSz11XRIXG3gAZApQa0d5DmcfyA7M,188
|
|
587
|
-
sphinx-8.0.2.dist-info/LICENSE.rst,sha256=HdZPUFcmQaLySBc9fKvRC5aOUNkxL9Gz5py0p6XGDk4,3135
|
|
588
|
-
sphinx-8.0.2.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
|
|
589
|
-
sphinx-8.0.2.dist-info/METADATA,sha256=New_RPW5LkZRRPCIqrIum2_zu4OlwwuzAxc6unKauEY,6205
|
|
590
|
-
sphinx-8.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|