summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guide/.buildinfo2
-rw-r--r--guide/_sources/test.rst.txt26
-rw-r--r--guide/_static/searchtools.js7
-rw-r--r--guide/any.html4
-rw-r--r--guide/basic.html4
-rw-r--r--guide/buildsys.html4
-rw-r--r--guide/concept.html4
-rw-r--r--guide/depend.html4
-rw-r--r--guide/distutils-legacy.html4
-rw-r--r--guide/distutils.html4
-rw-r--r--guide/eclass.html7
-rw-r--r--guide/expert-multi.html4
-rw-r--r--guide/genindex.html4
-rw-r--r--guide/helper.html4
-rw-r--r--guide/index.html5
-rw-r--r--guide/interpreter-maintenance.html4
-rw-r--r--guide/interpreter.html4
-rw-r--r--guide/migration.html4
-rw-r--r--guide/multi.html4
-rw-r--r--guide/objects.invbin896 -> 896 bytes
-rw-r--r--guide/package-maintenance.html4
-rw-r--r--guide/porting.html4
-rw-r--r--guide/preface.html4
-rw-r--r--guide/pypi.html6
-rw-r--r--guide/pytest.html4
-rw-r--r--guide/qawarn.html4
-rw-r--r--guide/search.html4
-rw-r--r--guide/searchindex.js2
-rw-r--r--guide/single.html4
-rw-r--r--guide/test.html29
30 files changed, 111 insertions, 57 deletions
diff --git a/guide/.buildinfo b/guide/.buildinfo
index 0aebc93..82ecff5 100644
--- a/guide/.buildinfo
+++ b/guide/.buildinfo
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: ae4182fbca2b572010c7813755d8102d
+config: 919a243bbb2ca255ad83ab463ca12b2e
tags: 645f666f9bcd5a90fca523b33c5a78b7
diff --git a/guide/_sources/test.rst.txt b/guide/_sources/test.rst.txt
index 0145125..1343a41 100644
--- a/guide/_sources/test.rst.txt
+++ b/guide/_sources/test.rst.txt
@@ -55,6 +55,9 @@ setting ``RDEPEND``, it also copies it to test dependencies.
The valid values include:
+- ``import-check`` for minimal import checking
+ using ``dev-python/pytest-import-check`` (see: `Import-checking
+ packages with no working tests`_)
- ``pytest`` for ``dev-python/pytest``
- ``setup.py`` to call ``setup.py test`` (*deprecated*)
- ``unittest`` to use built-in unittest discovery
@@ -312,6 +315,29 @@ correctly (i.e. runs no less tests than the alternative) and that it
does not spew too much irrelevant output.
+Import-checking packages with no working tests
+==============================================
+If the package has no tests at all (or the tests are completely
+unusable), the ``import-check`` option can be used instead. This option
+uses a dedicated pytest plugin to verify whether all installed Python
+packages can be imported. This includes both Python modules
+and compiled extensions, and therefore can e.g. detect undefined
+symbols.
+
+Since the function is based on pytest, ``EPYTEST_IGNORE`` can be used
+to skip files that are intentionally non-importable.
+
+Note that pytest will also run any tests found in the site-packages
+directory. If this is undesirable, a custom test phase can explicitly
+disable the default ``python`` plugin responsible for that, e.g.::
+
+ distutils_enable_tests import-check
+
+ python_test() {
+ epytest -p no:python --import-check --pyargs foo
+ }
+
+
Undesirable test dependencies
=============================
There is a number of packages that are frequently listed as test
diff --git a/guide/_static/searchtools.js b/guide/_static/searchtools.js
index 92da3f8..b08d58c 100644
--- a/guide/_static/searchtools.js
+++ b/guide/_static/searchtools.js
@@ -178,7 +178,7 @@ const Search = {
htmlToText: (htmlString, anchor) => {
const htmlElement = new DOMParser().parseFromString(htmlString, 'text/html');
- for (const removalQuery of [".headerlinks", "script", "style"]) {
+ for (const removalQuery of [".headerlink", "script", "style"]) {
htmlElement.querySelectorAll(removalQuery).forEach((el) => { el.remove() });
}
if (anchor) {
@@ -328,13 +328,14 @@ const Search = {
for (const [title, foundTitles] of Object.entries(allTitles)) {
if (title.toLowerCase().trim().includes(queryLower) && (queryLower.length >= title.length/2)) {
for (const [file, id] of foundTitles) {
- let score = Math.round(100 * queryLower.length / title.length)
+ const score = Math.round(Scorer.title * queryLower.length / title.length);
+ const boost = titles[file] === title ? 1 : 0; // add a boost for document titles
normalResults.push([
docNames[file],
titles[file] !== title ? `${titles[file]} > ${title}` : title,
id !== null ? "#" + id : "",
null,
- score,
+ score + boost,
filenames[file],
]);
}
diff --git a/guide/any.html b/guide/any.html
index 7b116c5..81ca7ee 100644
--- a/guide/any.html
+++ b/guide/any.html
@@ -297,7 +297,7 @@ USE conditional blocks inside <code class="docutils literal notranslate"><span c
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -377,7 +377,7 @@ USE conditional blocks inside <code class="docutils literal notranslate"><span c
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/basic.html b/guide/basic.html
index df634da..910c80f 100644
--- a/guide/basic.html
+++ b/guide/basic.html
@@ -260,7 +260,7 @@ or <code class="docutils literal notranslate"><span class="pre">noxfile.py</span
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -339,7 +339,7 @@ or <code class="docutils literal notranslate"><span class="pre">noxfile.py</span
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/buildsys.html b/guide/buildsys.html
index d881435..789d204 100644
--- a/guide/buildsys.html
+++ b/guide/buildsys.html
@@ -653,7 +653,7 @@ build-time <code class="docutils literal notranslate"><span class="pre">${PYTHON
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -731,7 +731,7 @@ build-time <code class="docutils literal notranslate"><span class="pre">${PYTHON
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/concept.html b/guide/concept.html
index 902ef05..82b01d2 100644
--- a/guide/concept.html
+++ b/guide/concept.html
@@ -199,7 +199,7 @@ of being retired.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -275,7 +275,7 @@ of being retired.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/depend.html b/guide/depend.html
index 0c567e2..21c642f 100644
--- a/guide/depend.html
+++ b/guide/depend.html
@@ -270,7 +270,7 @@ to run them.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -349,7 +349,7 @@ to run them.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/distutils-legacy.html b/guide/distutils-legacy.html
index 186e8e4..fb052e5 100644
--- a/guide/distutils-legacy.html
+++ b/guide/distutils-legacy.html
@@ -330,7 +330,7 @@ has broken it for most of the consumers.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -408,7 +408,7 @@ has broken it for most of the consumers.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/distutils.html b/guide/distutils.html
index b35d053..e2f22b7 100644
--- a/guide/distutils.html
+++ b/guide/distutils.html
@@ -1157,7 +1157,7 @@ python_install<span class="o">()</span><span class="w"> </span><span class="o">{
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -1250,7 +1250,7 @@ python_install<span class="o">()</span><span class="w"> </span><span class="o">{
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/eclass.html b/guide/eclass.html
index 30c2a44..1f6c3f8 100644
--- a/guide/eclass.html
+++ b/guide/eclass.html
@@ -51,7 +51,8 @@ and helpers for packages that primarily involve installing Python
files.</p></li>
</ol>
<figure class="align-default" id="id1">
-<img alt="_images/eclass.svg" src="_images/eclass.svg" /><figcaption>
+<img alt="_images/eclass.svg" src="_images/eclass.svg" />
+<figcaption>
<p><span class="caption-text">Inheritance graph of python-r1 suite eclasses.</span><a class="headerlink" href="#id1" title="Link to this image">¶</a></p>
</figcaption>
</figure>
@@ -170,7 +171,7 @@ For single-impl packages, <code class="docutils literal notranslate"><span class
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -249,7 +250,7 @@ For single-impl packages, <code class="docutils literal notranslate"><span class
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/expert-multi.html b/guide/expert-multi.html
index 36877c7..a7ce8db 100644
--- a/guide/expert-multi.html
+++ b/guide/expert-multi.html
@@ -549,7 +549,7 @@ to <code class="docutils literal notranslate"><span class="pre">python_gen_any_d
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -628,7 +628,7 @@ to <code class="docutils literal notranslate"><span class="pre">python_gen_any_d
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/genindex.html b/guide/genindex.html
index 907fbfa..e79259a 100644
--- a/guide/genindex.html
+++ b/guide/genindex.html
@@ -330,7 +330,7 @@
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -401,7 +401,7 @@
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
</div>
diff --git a/guide/helper.html b/guide/helper.html
index 7f38476..29b6e21 100644
--- a/guide/helper.html
+++ b/guide/helper.html
@@ -263,7 +263,7 @@ helpers</a> instead.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -342,7 +342,7 @@ helpers</a> instead.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/index.html b/guide/index.html
index 4c0d97d..f041921 100644
--- a/guide/index.html
+++ b/guide/index.html
@@ -118,6 +118,7 @@
<li class="toctree-l2"><a class="reference internal" href="test.html#why-is-running-tests-important">Why is running tests important?</a></li>
<li class="toctree-l2"><a class="reference internal" href="test.html#using-distutils-enable-tests">Using distutils_enable_tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="test.html#choosing-the-correct-test-runner">Choosing the correct test runner</a></li>
+<li class="toctree-l2"><a class="reference internal" href="test.html#import-checking-packages-with-no-working-tests">Import-checking packages with no working tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="test.html#undesirable-test-dependencies">Undesirable test dependencies</a></li>
<li class="toctree-l2"><a class="reference internal" href="test.html#missing-test-files-in-pypi-packages">Missing test files in PyPI packages</a></li>
<li class="toctree-l2"><a class="reference internal" href="test.html#importerrors-for-c-extensions">ImportErrors for C extensions</a></li>
@@ -246,7 +247,7 @@
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="#">Gentoo Python Guide</a></h1>
@@ -318,7 +319,7 @@
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/interpreter-maintenance.html b/guide/interpreter-maintenance.html
index 0f648f9..b80513f 100644
--- a/guide/interpreter-maintenance.html
+++ b/guide/interpreter-maintenance.html
@@ -314,7 +314,7 @@ dependencies will be added or vendored into flit_core.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -392,7 +392,7 @@ dependencies will be added or vendored into flit_core.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/interpreter.html b/guide/interpreter.html
index 36d9768..ac3d602 100644
--- a/guide/interpreter.html
+++ b/guide/interpreter.html
@@ -280,7 +280,7 @@ syntax than native asyncio code.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -361,7 +361,7 @@ syntax than native asyncio code.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/migration.html b/guide/migration.html
index 72e866e..ff2d989 100644
--- a/guide/migration.html
+++ b/guide/migration.html
@@ -233,7 +233,7 @@ necessary and tests should work out of the box.</p></li>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -311,7 +311,7 @@ necessary and tests should work out of the box.</p></li>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/multi.html b/guide/multi.html
index 2d43893..464ef88 100644
--- a/guide/multi.html
+++ b/guide/multi.html
@@ -374,7 +374,7 @@ flag, while parts affecting build time (<code class="docutils literal notranslat
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -454,7 +454,7 @@ flag, while parts affecting build time (<code class="docutils literal notranslat
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/objects.inv b/guide/objects.inv
index 7302190..8ac18c6 100644
--- a/guide/objects.inv
+++ b/guide/objects.inv
Binary files differ
diff --git a/guide/package-maintenance.html b/guide/package-maintenance.html
index 1faa5aa..4572a60 100644
--- a/guide/package-maintenance.html
+++ b/guide/package-maintenance.html
@@ -317,7 +317,7 @@ than to copy the mistakes into the ebuild.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -400,7 +400,7 @@ than to copy the mistakes into the ebuild.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/porting.html b/guide/porting.html
index 3e3c7cf..e540d9f 100644
--- a/guide/porting.html
+++ b/guide/porting.html
@@ -535,7 +535,7 @@ modules need to be imported and used separately rather than one.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -617,7 +617,7 @@ modules need to be imported and used separately rather than one.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/preface.html b/guide/preface.html
index 4cb6238..08f7879 100644
--- a/guide/preface.html
+++ b/guide/preface.html
@@ -61,7 +61,7 @@ and improvements are welcome.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -134,7 +134,7 @@ and improvements are welcome.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/pypi.html b/guide/pypi.html
index 46a0c3a..577a9dd 100644
--- a/guide/pypi.html
+++ b/guide/pypi.html
@@ -40,7 +40,7 @@ easier to adapt <code class="docutils literal notranslate"><span class="pre">SRC
<p>Please note that PyPI archives are not always the best choice
for distfiles. In particular, they frequently are missing tests
and other files important to Gentoo packaging. Should that be the case,
-other archives should be used. Read the <a class="reference internal" href="distutils.html#source-archives"><span class="std std-ref">Source archives</span></a> section
+other archives should be used. Read the <a class="reference internal" href="rst/distutils.html#source-archives"><span class="std std-ref">Source archives</span></a> section
for more information.</p>
<p>Eclass reference: <a class="reference external" href="https://devmanual.gentoo.org/eclass-reference/pypi.eclass/index.html">pypi.eclass(5)</a></p>
<section id="pypi-urls">
@@ -285,7 +285,7 @@ the wheel filename. It has a matching synopsis:</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -365,7 +365,7 @@ the wheel filename. It has a matching synopsis:</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/pytest.html b/guide/pytest.html
index c56c234..d562add 100644
--- a/guide/pytest.html
+++ b/guide/pytest.html
@@ -428,7 +428,7 @@ setting ignores <code class="docutils literal notranslate"><span class="pre">Dep
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -516,7 +516,7 @@ setting ignores <code class="docutils literal notranslate"><span class="pre">Dep
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/qawarn.html b/guide/qawarn.html
index 8baebf7..9befbfd 100644
--- a/guide/qawarn.html
+++ b/guide/qawarn.html
@@ -322,7 +322,7 @@ and other packages tend to copy that mistake.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -401,7 +401,7 @@ and other packages tend to copy that mistake.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/search.html b/guide/search.html
index f256de8..5a7f46c 100644
--- a/guide/search.html
+++ b/guide/search.html
@@ -68,7 +68,7 @@
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -129,7 +129,7 @@
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
</div>
diff --git a/guide/searchindex.js b/guide/searchindex.js
index 8a638b4..b2b7ff4 100644
--- a/guide/searchindex.js
+++ b/guide/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"alltitles": {".called_with (and other invalid assertions) now trigger an error": [[16, "called-with-and-other-invalid-assertions-now-trigger-an-error"], [37, "called-with-and-other-invalid-assertions-now-trigger-an-error"]], "A hybrid: build-time + conditional runtime": [[42, "a-hybrid-build-time-conditional-runtime"], [44, "a-hybrid-build-time-conditional-runtime"]], "Adding a new Python implementation": [[12, "adding-a-new-python-implementation"], [33, "adding-a-new-python-implementation"]], "Adding more test dependencies": [[43, "adding-more-test-dependencies"], [45, "adding-more-test-dependencies"]], "Adding new Python implementations to existing packages": [[15, "adding-new-python-implementations-to-existing-packages"], [36, "adding-new-python-implementations-to-existing-packages"]], "Adding new namespace packages to Gentoo": [[3, "adding-new-namespace-packages-to-gentoo"], [24, "adding-new-namespace-packages-to-gentoo"]], "Additional Sphinx extensions": [[5, "additional-sphinx-extensions"], [26, "additional-sphinx-extensions"]], "Additional build-time Python use": [[14, "additional-build-time-python-use"], [35, "additional-build-time-python-use"]], "Additional conditional dependencies": [[0, "additional-conditional-dependencies"], [21, "additional-conditional-dependencies"]], "Advanced concepts": [[3, "advanced-concepts"], [24, "advanced-concepts"]], "Advanced dependencies": [[4, "advanced-dependencies"], [25, "advanced-dependencies"]], "Alternative Python implementations": [[11, "alternative-python-implementations"], [32, "alternative-python-implementations"]], "Avoiding dependencies on other pytest plugins": [[19, "avoiding-dependencies-on-other-pytest-plugins"], [40, "avoiding-dependencies-on-other-pytest-plugins"]], "Avoiding the dependency on pytest-runner": [[19, "avoiding-the-dependency-on-pytest-runner"], [40, "avoiding-the-dependency-on-pytest-runner"]], "Backports": [[11, "backports"], [32, "backports"]], "Basic documentation with autodoc": [[5, "basic-documentation-with-autodoc"], [26, "basic-documentation-with-autodoc"]], "Basic use (PEP 517 mode)": [[5, "basic-use-pep-517-mode"], [26, "basic-use-pep-517-mode"]], "Basic use case": [[43, "basic-use-case"], [45, "basic-use-case"]], "Basic use for unconditional Python": [[0, "basic-use-for-unconditional-python"], [21, "basic-use-for-unconditional-python"], [42, "basic-use-for-unconditional-python"], [44, "basic-use-for-unconditional-python"]], "Binary distribution filenames": [[18, "binary-distribution-filenames"], [39, "binary-distribution-filenames"]], "Build time vs runtime use": [[7, "build-time-vs-runtime-use"], [28, "build-time-vs-runtime-use"]], "Build-time use": [[2, "build-time-use"], [23, "build-time-use"]], "Build-time use with extra dependencies": [[2, "build-time-use-with-extra-dependencies"], [23, "build-time-use-with-extra-dependencies"]], "Build-time use with no extra dependencies": [[2, "build-time-use-with-no-extra-dependencies"], [23, "build-time-use-with-no-extra-dependencies"]], "Building documentation via Sphinx": [[5, "building-documentation-via-sphinx"], [26, "building-documentation-via-sphinx"]], "Byte-compiling Python modules": [[9, "byte-compiling-python-modules"], [30, "byte-compiling-python-modules"]], "CPython patchsets": [[12, "cpython-patchsets"], [33, "cpython-patchsets"]], "Calling custom setup.py commands": [[5, "calling-custom-setup-py-commands"], [26, "calling-custom-setup-py-commands"]], "Checking via pip": [[15, "checking-via-pip"], [36, "checking-via-pip"]], "Checklist for dealing with test failures": [[43, "checklist-for-dealing-with-test-failures"], [45, "checklist-for-dealing-with-test-failures"]], "Choosing between Python eclasses": [[7, "choosing-between-python-eclasses"], [28, "choosing-between-python-eclasses"]], "Choosing the correct test runner": [[43, "choosing-the-correct-test-runner"], [45, "choosing-the-correct-test-runner"]], "Combining any-r1 API with implementation restrictions": [[8, "combining-any-r1-api-with-implementation-restrictions"], [29, "combining-any-r1-api-with-implementation-restrictions"]], "Common basics": [[1, "common-basics"], [22, "common-basics"]], "Common helper functions": [[9, "common-helper-functions"], [30, "common-helper-functions"]], "Compiled bytecode-related warnings": [[20, "compiled-bytecode-related-warnings"], [41, "compiled-bytecode-related-warnings"]], "Conditional Python use": [[0, "conditional-python-use"], [14, "conditional-python-use"], [21, "conditional-python-use"], [35, "conditional-python-use"], [42, "conditional-python-use"], [44, "conditional-python-use"]], "Contents:": [[10, null], [31, null]], "Customizing the generated URL": [[18, "customizing-the-generated-url"], [39, "customizing-the-generated-url"]], "Customizing the test phase": [[43, "customizing-the-test-phase"], [45, "customizing-the-test-phase"]], "Customizing the test phase for pytest": [[43, "customizing-the-test-phase-for-pytest"], [45, "customizing-the-test-phase-for-pytest"]], "DISTUTILS_USE_SETUPTOOLS": [[6, "distutils-use-setuptools"], [27, "distutils-use-setuptools"]], "Dealing with flaky tests": [[19, "dealing-with-flaky-tests"], [40, "dealing-with-flaky-tests"]], "Dependencies": [[0, "dependencies"], [5, "dependencies"], [14, "dependencies"], [21, "dependencies"], [26, "dependencies"], [35, "dependencies"], [42, "dependencies"], [44, "dependencies"]], "Dependencies conditional to Python version": [[4, "dependencies-conditional-to-python-version"], [25, "dependencies-conditional-to-python-version"]], "Dependencies in Python packages": [[1, "dependencies-in-python-packages"], [22, "dependencies-in-python-packages"]], "Dependencies on CFFI and greenlet": [[4, "dependencies-on-cffi-and-greenlet"], [25, "dependencies-on-cffi-and-greenlet"]], "Deprecated PEP 517 backends": [[20, "deprecated-pep-517-backends"], [41, "deprecated-pep-517-backends"]], "Deprecated test method alias removal": [[16, "deprecated-test-method-alias-removal"], [37, "deprecated-test-method-alias-removal"]], "Determining whether namespaces are used": [[3, "determining-whether-namespaces-are-used"], [24, "determining-whether-namespaces-are-used"]], "Different build system variations": [[6, "different-build-system-variations"], [27, "different-build-system-variations"]], "Different sets of build-time dependencies": [[8, "different-sets-of-build-time-dependencies"], [29, "different-sets-of-build-time-dependencies"]], "Disabling plugin autoloading": [[19, "disabling-plugin-autoloading"], [40, "disabling-plugin-autoloading"]], "Disjoint build dependencies (any-r1 API)": [[8, "disjoint-build-dependencies-any-r1-api"], [29, "disjoint-build-dependencies-any-r1-api"]], "Documentation files installed by Poetry": [[20, "documentation-files-installed-by-poetry"], [41, "documentation-files-installed-by-poetry"]], "Eclass and profile changes": [[12, "eclass-and-profile-changes"], [12, "id1"], [33, "eclass-and-profile-changes"], [33, "id1"]], "Enabling tests": [[5, "enabling-tests"], [26, "enabling-tests"]], "Example for test packages installed by setuptools": [[20, "example-for-test-packages-installed-by-setuptools"], [41, "example-for-test-packages-installed-by-setuptools"]], "Expert python-r1 usage": [[8, "expert-python-r1-usage"], [29, "expert-python-r1-usage"]], "Failures due to missing files in temporary directories": [[19, "failures-due-to-missing-files-in-temporary-directories"], [40, "failures-due-to-missing-files-in-temporary-directories"]], "Fetching wheels": [[18, "fetching-wheels"], [39, "fetching-wheels"]], "Finding dependency lists from build systems": [[1, "finding-dependency-lists-from-build-systems"], [22, "finding-dependency-lists-from-build-systems"]], "Fixing shebangs on installed scripts": [[9, "fixing-shebangs-on-installed-scripts"], [30, "fixing-shebangs-on-installed-scripts"]], "Generator-based coroutine removal (asyncio.coroutine)": [[16, "generator-based-coroutine-removal-asyncio-coroutine"], [37, "generator-based-coroutine-removal-asyncio-coroutine"]], "Gentoo Python Guide": [[10, "gentoo-python-guide"], [31, "gentoo-python-guide"]], "Hierarchical package structure": [[3, "hierarchical-package-structure"], [24, "hierarchical-package-structure"]], "Hybrid python-r1 + SCons package": [[2, "hybrid-python-r1-scons-package"], [23, "hybrid-python-r1-scons-package"]], "ImportErrors for C extensions": [[43, "importerrors-for-c-extensions"], [45, "importerrors-for-c-extensions"]], "ImportPathMismatchError": [[19, "importpathmismatcherror"], [40, "importpathmismatcherror"]], "Improved QA warning reporting in Portage": [[20, "improved-qa-warning-reporting-in-portage"], [41, "improved-qa-warning-reporting-in-portage"]], "In-source vs out-of-source builds": [[6, "in-source-vs-out-of-source-builds"], [27, "in-source-vs-out-of-source-builds"]], "Indices and tables": [[10, "indices-and-tables"], [31, "indices-and-tables"]], "Install helpers": [[9, "install-helpers"], [30, "install-helpers"]], "Installing extra dependencies in test environment (PEP 517 mode)": [[43, "installing-extra-dependencies-in-test-environment-pep-517-mode"], [45, "installing-extra-dependencies-in-test-environment-pep-517-mode"]], "Installing packages manually into BUILD_DIR": [[5, "installing-packages-manually-into-build-dir"], [26, "installing-packages-manually-into-build-dir"]], "Installing packages manually into D": [[5, "installing-packages-manually-into-d"], [26, "installing-packages-manually-into-d"]], "Installing packages without a PEP 517 build backend": [[5, "installing-packages-without-a-pep-517-build-backend"], [26, "installing-packages-without-a-pep-517-build-backend"]], "Installing the package before running tests": [[43, "installing-the-package-before-running-tests"], [45, "installing-the-package-before-running-tests"]], "Installing the package before testing": [[6, "installing-the-package-before-testing"], [27, "installing-the-package-before-testing"]], "Integrating with a non-PEP 517 build system": [[5, "integrating-with-a-non-pep-517-build-system"], [26, "integrating-with-a-non-pep-517-build-system"]], "Integration with build systems written in Python": [[2, "integration-with-build-systems-written-in-python"], [23, "integration-with-build-systems-written-in-python"]], "Legacy namespace packages in Gentoo": [[3, "legacy-namespace-packages-in-gentoo"], [24, "legacy-namespace-packages-in-gentoo"]], "Life cycle of a Python implementation": [[11, "life-cycle-of-a-python-implementation"], [32, "life-cycle-of-a-python-implementation"]], "Maintenance of Python implementations": [[12, "maintenance-of-python-implementations"], [33, "maintenance-of-python-implementations"]], "Manual install": [[14, "manual-install"], [35, "manual-install"], [42, "manual-install"], [44, "manual-install"]], "Meson": [[2, "meson"], [23, "meson"]], "Migrating from EAPI 7 to EAPI 8": [[13, "migrating-from-eapi-7-to-eapi-8"], [34, "migrating-from-eapi-7-to-eapi-8"]], "Migrating from old PYTHON_USEDEP syntax in python-single-r1": [[13, "migrating-from-old-python-usedep-syntax-in-python-single-r1"], [34, "migrating-from-old-python-usedep-syntax-in-python-single-r1"]], "Migrating to PEP 517 builds": [[13, "migrating-to-pep-517-builds"], [34, "migrating-to-pep-517-builds"]], "Migration guides": [[13, "migration-guides"], [34, "migration-guides"]], "Missing test files in PyPI packages": [[43, "missing-test-files-in-pypi-packages"], [45, "missing-test-files-in-pypi-packages"]], "Modern and legacy URLs": [[18, "modern-and-legacy-urls"], [39, "modern-and-legacy-urls"]], "Modules are not byte-compiled": [[20, "modules-are-not-byte-compiled"], [41, "modules-are-not-byte-compiled"]], "Monitoring new package versions": [[15, "monitoring-new-package-versions"], [36, "monitoring-new-package-versions"]], "Multiple USE conditions": [[42, "multiple-use-conditions"], [44, "multiple-use-conditions"]], "Multiple sets of conditional dependencies": [[0, "multiple-sets-of-conditional-dependencies"], [21, "multiple-sets-of-conditional-dependencies"]], "Namespace package structure": [[3, "namespace-package-structure"], [24, "namespace-package-structure"]], "Namespace packages": [[3, "namespace-packages"], [24, "namespace-packages"]], "Notes specific to Python interpreters": [[12, "notes-specific-to-python-interpreters"], [33, "notes-specific-to-python-interpreters"]], "Optional test suite dependencies on Rust packages": [[4, "optional-test-suite-dependencies-on-rust-packages"], [25, "optional-test-suite-dependencies-on-rust-packages"]], "Other runtime uses of setuptools": [[6, "other-runtime-uses-of-setuptools"], [27, "other-runtime-uses-of-setuptools"]], "Overview": [[7, "overview"], [28, "overview"]], "PEP 517 build systems": [[5, "pep-517-build-systems"], [26, "pep-517-build-systems"]], "PYTHON_COMPAT": [[1, "python-compat"], [22, "python-compat"]], "PYTHON_DEPS and PYTHON_REQUIRED_USE": [[1, "python-deps-and-python-required-use"], [22, "python-deps-and-python-required-use"]], "Package name policy": [[15, "package-name-policy"], [36, "package-name-policy"]], "Package with a different name": [[18, "package-with-a-different-name"], [39, "package-with-a-different-name"]], "Packages installing extensions (C, Rust\u2026)": [[5, "packages-installing-extensions-c-rust"], [26, "packages-installing-extensions-c-rust"]], "Packages using Cython": [[5, "packages-using-cython"], [26, "packages-using-cython"]], "Packages with Rust extensions (using Cargo)": [[5, "packages-with-rust-extensions-using-cargo"], [26, "packages-with-rust-extensions-using-cargo"]], "Packages with matching name and version": [[18, "packages-with-matching-name-and-version"], [39, "packages-with-matching-name-and-version"]], "Packages with optional Python build system usage": [[5, "packages-with-optional-python-build-system-usage"], [26, "packages-with-optional-python-build-system-usage"]], "Parallel build race conditions": [[5, "parallel-build-race-conditions"], [26, "parallel-build-race-conditions"]], "Partially restricting Python implementation": [[8, "partially-restricting-python-implementation"], [29, "partially-restricting-python-implementation"]], "Passing arguments to setup.py": [[5, "passing-arguments-to-setup-py"], [26, "passing-arguments-to-setup-py"]], "Porting initial packages": [[12, "porting-initial-packages"], [33, "porting-initial-packages"]], "Porting packages to a new EAPI": [[15, "porting-packages-to-a-new-eapi"], [36, "porting-packages-to-a-new-eapi"]], "Porting tips": [[16, "porting-tips"], [37, "porting-tips"]], "Porting to tomli-w": [[16, "porting-to-tomli-w"], [37, "porting-to-tomli-w"]], "Porting to tomllib/tomli with toml fallback": [[16, "porting-to-tomllib-tomli-with-toml-fallback"], [37, "porting-to-tomllib-tomli-with-toml-fallback"]], "Porting to tomllib/tomli without toml fallback": [[16, "porting-to-tomllib-tomli-without-toml-fallback"], [37, "porting-to-tomllib-tomli-without-toml-fallback"]], "Preface": [[17, "preface"], [38, "preface"]], "Preparation": [[12, "preparation"], [33, "preparation"]], "Pure Python autotools package": [[14, "pure-python-autotools-package"], [35, "pure-python-autotools-package"]], "Pure Python multi-impl package": [[2, "pure-python-multi-impl-package"], [23, "pure-python-multi-impl-package"]], "PyPI URLs": [[18, "pypi-urls"], [39, "pypi-urls"]], "PyPI release feeds": [[15, "pypi-release-feeds"], [36, "pypi-release-feeds"]], "PyPy": [[12, "pypy"], [33, "pypy"]], "Python 3.10": [[16, "python-3-10"], [37, "python-3-10"]], "Python 3.11": [[16, "python-3-11"], [37, "python-3-11"]], "Python 3.12": [[16, "python-3-12"], [37, "python-3-12"]], "Python 3.8": [[16, "python-3-8"], [37, "python-3-8"]], "Python 3.9": [[16, "python-3-9"], [37, "python-3-9"]], "Python build system bootstrap": [[12, "python-build-system-bootstrap"], [33, "python-build-system-bootstrap"]], "Python environment": [[1, "python-environment"], [22, "python-environment"]], "Python interpreters": [[11, "python-interpreters"], [32, "python-interpreters"]], "Python package maintenance": [[15, "python-package-maintenance"], [36, "python-package-maintenance"]], "Python-first packages (distutils-r1 eclass)": [[7, "python-first-packages-distutils-r1-eclass"], [28, "python-first-packages-distutils-r1-eclass"]], "QA checks and warnings": [[20, "qa-checks-and-warnings"], [41, "qa-checks-and-warnings"]], "Querying the implementation information": [[9, "querying-the-implementation-information"], [30, "querying-the-implementation-information"]], "Removing a Python implementation": [[12, "removing-a-python-implementation"], [33, "removing-a-python-implementation"]], "Replacing the toml package": [[16, "replacing-the-toml-package"], [37, "replacing-the-toml-package"]], "Repology": [[15, "repology"], [36, "repology"]], "Requesting USE flags on the Python interpreter": [[4, "requesting-use-flags-on-the-python-interpreter"], [25, "requesting-use-flags-on-the-python-interpreter"]], "Restricting interpreters for python_setup": [[8, "restricting-interpreters-for-python-setup"], [29, "restricting-interpreters-for-python-setup"]], "Retroactive changes": [[16, "retroactive-changes"], [37, "retroactive-changes"]], "Routine checks on installed Python packages": [[15, "routine-checks-on-installed-python-packages"], [36, "routine-checks-on-installed-python-packages"]], "Running tests with virtualx": [[43, "running-tests-with-virtualx"], [45, "running-tests-with-virtualx"]], "SCons": [[2, "scons"], [23, "scons"]], "Setuptools\u2019 entry points": [[6, "setuptools-entry-points"], [27, "setuptools-entry-points"]], "Single-impl package": [[2, "single-impl-package"], [2, "id1"], [23, "single-impl-package"], [23, "id1"]], "Single-impl package with conditional Python install": [[2, "single-impl-package-with-conditional-python-install"], [23, "single-impl-package-with-conditional-python-install"]], "Single-impl vs multi-impl": [[7, "single-impl-vs-multi-impl"], [28, "single-impl-vs-multi-impl"]], "Skipping problematic tests": [[43, "skipping-problematic-tests"], [45, "skipping-problematic-tests"]], "Skipping tests based on markers": [[19, "skipping-tests-based-on-markers"], [40, "skipping-tests-based-on-markers"]], "Skipping tests based on paths/names": [[19, "skipping-tests-based-on-paths-names"], [40, "skipping-tests-based-on-paths-names"]], "Source archives": [[5, "source-archives"], [26, "source-archives"]], "Source distribution filenames": [[18, "source-distribution-filenames"], [39, "source-distribution-filenames"]], "Sphinx without autodoc or extensions": [[5, "sphinx-without-autodoc-or-extensions"], [26, "sphinx-without-autodoc-or-extensions"]], "Stability guarantees of Python implementations": [[11, "stability-guarantees-of-python-implementations"], [32, "stability-guarantees-of-python-implementations"]], "Stray compiled bytecode": [[20, "stray-compiled-bytecode"], [41, "stray-compiled-bytecode"]], "Stray top-level files in site-packages": [[20, "stray-top-level-files-in-site-packages"], [41, "stray-top-level-files-in-site-packages"]], "Sub-phase functions": [[5, "sub-phase-functions"], [26, "sub-phase-functions"]], "Support for Python 2": [[15, "support-for-python-2"], [36, "support-for-python-2"]], "Support for multiple implementations": [[11, "support-for-multiple-implementations"], [32, "support-for-multiple-implementations"]], "Tests aborting (due to assertions)": [[43, "tests-aborting-due-to-assertions"], [45, "tests-aborting-due-to-assertions"]], "Tests in Python packages": [[43, "tests-in-python-packages"], [45, "tests-in-python-packages"]], "Tests requiring Internet access": [[43, "tests-requiring-internet-access"], [45, "tests-requiring-internet-access"]], "The PEP 517 and legacy modes": [[5, "the-pep-517-and-legacy-modes"], [26, "the-pep-517-and-legacy-modes"]], "The most common dependency types": [[1, "the-most-common-dependency-types"], [22, "the-most-common-dependency-types"]], "TypeError: _make_test_flaky() got an unexpected keyword argument \u2018reruns\u2019": [[19, "typeerror-make-test-flaky-got-an-unexpected-keyword-argument-reruns"], [40, "typeerror-make-test-flaky-got-an-unexpected-keyword-argument-reruns"]], "Undesirable test dependencies": [[43, "undesirable-test-dependencies"], [45, "undesirable-test-dependencies"]], "Using any-r1 API with distutils-r1": [[8, "using-any-r1-api-with-distutils-r1"], [29, "using-any-r1-api-with-distutils-r1"]], "Using any-r1 API with python-r1": [[8, "using-any-r1-api-with-python-r1"], [29, "using-any-r1-api-with-python-r1"]], "Using distutils_enable_tests": [[43, "using-distutils-enable-tests"], [45, "using-distutils-enable-tests"]], "Using pytest-timeout to prevent deadlocks (hangs)": [[19, "using-pytest-timeout-to-prevent-deadlocks-hangs"], [40, "using-pytest-timeout-to-prevent-deadlocks-hangs"]], "Using pytest-xdist to run tests in parallel": [[19, "using-pytest-xdist-to-run-tests-in-parallel"], [40, "using-pytest-xdist-to-run-tests-in-parallel"]], "Using regular python-r1 API": [[8, "using-regular-python-r1-api"], [29, "using-regular-python-r1-api"]], "Versions of Python": [[11, "versions-of-python"], [32, "versions-of-python"]], "Warnings": [[19, "warnings"], [40, "warnings"]], "Which implementations to test new packages for?": [[15, "which-implementations-to-test-new-packages-for"], [36, "which-implementations-to-test-new-packages-for"]], "Which packages can be (co-)maintained by the Python project?": [[15, "which-packages-can-be-co-maintained-by-the-python-project"], [36, "which-packages-can-be-co-maintained-by-the-python-project"]], "Why is running tests important?": [[43, "why-is-running-tests-important"], [45, "why-is-running-tests-important"]], "base64.encodestring / base64.decodestring removal": [[16, "base64-encodestring-base64-decodestring-removal"], [37, "base64-encodestring-base64-decodestring-removal"]], "bpo43882: urlsplit now strips LF, CR and HT characters": [[16, "bpo43882-urlsplit-now-strips-lf-cr-and-ht-characters"], [37, "bpo43882-urlsplit-now-strips-lf-cr-and-ht-characters"]], "configure: No package \u2018python-3.1\u2019 found": [[16, "configure-no-package-python-3-1-found"], [37, "configure-no-package-python-3-1-found"]], "distutils and setuptools build systems": [[6, "distutils-and-setuptools-build-systems"], [27, "distutils-and-setuptools-build-systems"]], "distutils-r1 legacy concepts": [[6, "distutils-r1-legacy-concepts"], [27, "distutils-r1-legacy-concepts"]], "distutils-r1 \u2014 standard Python build systems": [[5, "distutils-r1-standard-python-build-systems"], [26, "distutils-r1-standard-python-build-systems"]], "distutils.sysconfig deprecation": [[16, "distutils-sysconfig-deprecation"], [37, "distutils-sysconfig-deprecation"]], "fixture \u2018\u2026\u2019 not found": [[19, "fixture-not-found"], [40, "fixture-not-found"]], "flit.buildapi": [[20, "flit-buildapi"], [41, "flit-buildapi"]], "gpy-verify-deps": [[15, "gpy-verify-deps"], [36, "gpy-verify-deps"]], "inspect.getargspec() and inspect.formatargspec() removal": [[16, "inspect-getargspec-and-inspect-formatargspec-removal"], [37, "inspect-getargspec-and-inspect-formatargspec-removal"]], "pip check": [[15, "pip-check"], [36, "pip-check"]], "pip list --outdated": [[15, "pip-list-outdated"], [36, "pip-list-outdated"]], "poetry.masonry.api": [[20, "poetry-masonry-api"], [41, "poetry-masonry-api"]], "pypi \u2014 helper eclass for PyPI archives": [[18, "pypi-helper-eclass-for-pypi-archives"], [39, "pypi-helper-eclass-for-pypi-archives"]], "pyproject.toml-based projects": [[6, "pyproject-toml-based-projects"], [27, "pyproject-toml-based-projects"]], "pytest recipes": [[19, "pytest-recipes"], [40, "pytest-recipes"]], "python-any-r1 \u2014 build-time dependency": [[0, "python-any-r1-build-time-dependency"], [21, "python-any-r1-build-time-dependency"]], "python-config and pkg-config no longer list Python library by default": [[16, "python-config-and-pkg-config-no-longer-list-python-library-by-default"], [37, "python-config-and-pkg-config-no-longer-list-python-library-by-default"]], "python-r1 \u2014 multi-impl packages": [[14, "python-r1-multi-impl-packages"], [35, "python-r1-multi-impl-packages"]], "python-single-r1 variant": [[5, "python-single-r1-variant"], [26, "python-single-r1-variant"]], "python-single-r1 \u2014 single-impl packages": [[42, "python-single-r1-single-impl-packages"], [44, "python-single-r1-single-impl-packages"]], "python_compile": [[5, "python-compile"], [26, "python-compile"]], "python_configure": [[5, "python-configure"], [26, "python-configure"]], "python_install": [[5, "python-install"], [26, "python-install"]], "python_prepare": [[5, "python-prepare"], [26, "python-prepare"]], "python_test": [[5, "python-test"], [26, "python-test"]], "setuptools.build_meta:__legacy__": [[20, "setuptools-build-meta-legacy"], [41, "setuptools-build-meta-legacy"]], "setuptools_scm (flit_scm, hatch-vcs, pdm-backend) and snapshots": [[5, "setuptools-scm-flit-scm-hatch-vcs-pdm-backend-and-snapshots"], [26, "setuptools-scm-flit-scm-hatch-vcs-pdm-backend-and-snapshots"]], "waf": [[2, "waf"], [23, "waf"]]}, "docnames": ["any", "basic", "buildsys", "concept", "depend", "distutils", "distutils-legacy", "eclass", "expert-multi", "helper", "index", "interpreter", "interpreter-maintenance", "migration", "multi", "package-maintenance", "porting", "preface", "pypi", "pytest", "qawarn", "rst/any", "rst/basic", "rst/buildsys", "rst/concept", "rst/depend", "rst/distutils", "rst/distutils-legacy", "rst/eclass", "rst/expert-multi", "rst/helper", "rst/index", "rst/interpreter", "rst/interpreter-maintenance", "rst/migration", "rst/multi", "rst/package-maintenance", "rst/porting", "rst/preface", "rst/pypi", "rst/pytest", "rst/qawarn", "rst/single", "rst/test", "single", "test"], "envversion": {"sphinx": 61, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["any.rst", "basic.rst", "buildsys.rst", "concept.rst", "depend.rst", "distutils.rst", "distutils-legacy.rst", "eclass.rst", "expert-multi.rst", "helper.rst", "index.rst", "interpreter.rst", "interpreter-maintenance.rst", "migration.rst", "multi.rst", "package-maintenance.rst", "porting.rst", "preface.rst", "pypi.rst", "pytest.rst", "qawarn.rst", "rst/any.rst", "rst/basic.rst", "rst/buildsys.rst", "rst/concept.rst", "rst/depend.rst", "rst/distutils.rst", "rst/distutils-legacy.rst", "rst/eclass.rst", "rst/expert-multi.rst", "rst/helper.rst", "rst/index.rst", "rst/interpreter.rst", "rst/interpreter-maintenance.rst", "rst/migration.rst", "rst/multi.rst", "rst/package-maintenance.rst", "rst/porting.rst", "rst/preface.rst", "rst/pypi.rst", "rst/pytest.rst", "rst/qawarn.rst", "rst/single.rst", "rst/test.rst", "single.rst", "test.rst"], "indexentries": {"bdepend": [[1, "index-5", false], [22, "index-5", false]], "cffi": [[4, "index-3", false], [25, "index-3", false]], "cython": [[5, "index-8", false], [26, "index-8", false]], "depend": [[1, "index-6", false], [22, "index-6", false]], "distutils_all_subphase_impls": [[8, "index-2", false], [29, "index-2", false]], "distutils_args": [[5, "index-19", false], [26, "index-19", false]], "distutils_deps": [[5, "index-22", false], [26, "index-22", false]], "distutils_enable_sphinx": [[5, "index-21", false], [26, "index-21", false]], "distutils_enable_tests": [[43, "index-0", false], [45, "index-0", false]], "distutils_ext": [[5, "index-7", false], [26, "index-7", false]], "distutils_in_source_build": [[6, "index-1", false], [27, "index-1", false]], "distutils_install_for_testing": [[6, "index-2", false], [27, "index-2", false]], "distutils_optional": [[5, "index-23", false], [26, "index-23", false]], "distutils_single_impl": [[5, "index-0", false], [26, "index-0", false]], "distutils_use_pep517": [[5, "index-1", false], [26, "index-1", false]], "distutils_use_setuptools": [[6, "index-0", false], [27, "index-0", false]], "eapi 8": [[13, "index-1", false], [34, "index-1", false]], "epytest": [[43, "index-1", false], [45, "index-1", false]], "epytest_timeout": [[19, "index-3", false], [40, "index-3", false]], "epytest_xdist": [[19, "index-2", false], [40, "index-2", false]], "epython": [[1, "index-3", false], [22, "index-3", false]], "esetup.py": [[5, "index-20", false], [26, "index-20", false]], "flit_scm": [[5, "index-4", false], [26, "index-4", false]], "for conditional deps": [[4, "index-2", false], [25, "index-2", false]], "for python-r1": [[14, "index-3", false], [35, "index-3", false]], "for python-single-r1": [[42, "index-2", false], [44, "index-2", false]], "greenlet": [[4, "index-3", false], [25, "index-3", false]], "hatch-vcs": [[5, "index-5", false], [26, "index-5", false]], "pdm_build_scm_version": [[5, "index-3", false], [26, "index-3", false]], "pytest_disable_plugin_autoload": [[19, "index-0", false], [40, "index-0", false]], "pytest_plugins": [[19, "index-1", false], [40, "index-1", false]], "python": [[1, "index-4", false], [22, "index-4", false]], "python-any-r1": [[0, "index-0", false], [0, "index-1", false], [0, "index-2", false], [21, "index-0", false], [21, "index-1", false], [21, "index-2", false]], "python-r1": [[8, "index-3", false], [8, "index-4", false], [14, "index-1", false], [29, "index-3", false], [29, "index-4", false], [35, "index-1", false]], "python-single-r1": [[42, "index-1", false], [44, "index-1", false]], "python_check_deps": [[0, "index-1", false], [8, "index-4", false], [21, "index-1", false], [29, "index-4", false]], "python_compat": [[1, "index-0", false], [22, "index-0", false]], "python_compile": [[5, "index-13", false], [26, "index-13", false]], "python_compile_all": [[5, "index-14", false], [26, "index-14", false]], "python_configure": [[5, "index-11", false], [26, "index-11", false]], "python_configure_all": [[5, "index-12", false], [26, "index-12", false]], "python_deps": [[1, "index-1", false], [22, "index-1", false]], "python_doexe": [[9, "index-0", false], [30, "index-0", false]], "python_doheaders": [[9, "index-5", false], [30, "index-5", false]], "python_domodule": [[9, "index-4", false], [30, "index-4", false]], "python_doscript": [[9, "index-2", false], [30, "index-2", false]], "python_fix_shebang": [[9, "index-8", false], [30, "index-8", false]], "python_foreach_impl": [[14, "index-0", false], [35, "index-0", false]], "python_gen_any_dep": [[0, "index-0", false], [8, "index-3", false], [21, "index-0", false], [29, "index-3", false]], "python_gen_cond_dep": [[4, "index-2", false], [25, "index-2", false], [42, "index-2", false], [44, "index-2", false]], "python_gen_impl_dep": [[4, "index-1", false], [25, "index-1", false]], "python_gen_useflags": [[8, "index-0", false], [29, "index-0", false]], "python_get_cflags": [[9, "index-14", false], [30, "index-14", false]], "python_get_includedir": [[9, "index-11", false], [30, "index-11", false]], "python_get_library_path": [[9, "index-13", false], [30, "index-13", false]], "python_get_libs": [[9, "index-15", false], [30, "index-15", false]], "python_get_python_config": [[9, "index-16", false], [30, "index-16", false]], "python_get_scriptdir": [[9, "index-12", false], [30, "index-12", false]], "python_get_sitedir": [[9, "index-10", false], [30, "index-10", false]], "python_has_version": [[0, "index-3", false], [21, "index-3", false]], "python_install": [[5, "index-17", false], [26, "index-17", false]], "python_install_all": [[5, "index-18", false], [26, "index-18", false]], "python_moduleinto": [[9, "index-7", false], [30, "index-7", false]], "python_multi_usedep": [[13, "index-0", false], [34, "index-0", false]], "python_newexe": [[9, "index-1", false], [30, "index-1", false]], "python_newscript": [[9, "index-3", false], [30, "index-3", false]], "python_optimize": [[9, "index-9", false], [30, "index-9", false]], "python_prepare": [[5, "index-9", false], [26, "index-9", false]], "python_prepare_all": [[5, "index-10", false], [26, "index-10", false]], "python_req_use": [[4, "index-0", false], [25, "index-0", false]], "python_required_use": [[1, "index-2", false], [22, "index-2", false]], "python_scriptinto": [[9, "index-6", false], [30, "index-6", false]], "python_setup": [[8, "index-1", false], [14, "index-3", false], [29, "index-1", false], [35, "index-3", false]], "python_single_usedep": [[42, "index-0", false], [44, "index-0", false]], "python_test": [[5, "index-15", false], [26, "index-15", false]], "python_test_all": [[5, "index-16", false], [26, "index-16", false]], "python_usedep": [[0, "index-2", false], [14, "index-1", false], [21, "index-2", false], [35, "index-1", false], [42, "index-1", false], [44, "index-1", false]], "rdepend": [[1, "index-7", false], [22, "index-7", false]], "run_in_build_dir": [[14, "index-2", false], [35, "index-2", false]], "rust": [[5, "index-24", false], [26, "index-24", false]], "setuptools_scm": [[5, "index-6", false], [26, "index-6", false]], "setuptools_scm_pretend_version": [[5, "index-2", false], [26, "index-2", false]], "test-rust": [[4, "index-4", false], [25, "index-4", false]], "virtx": [[43, "index-2", false], [45, "index-2", false]], "with implementation parameter": [[8, "index-1", false], [29, "index-1", false]]}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 4, 5, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 30, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "0": [0, 2, 4, 5, 6, 8, 10, 11, 12, 14, 15, 16, 19, 20, 21, 23, 25, 26, 27, 29, 31, 32, 33, 35, 36, 37, 40, 41, 42, 43, 44, 45], "01": [19, 40], "05": [19, 40], "0x00007f748bc47740": [43, 45], "0x00007fb5db746740": [43, 45], "0x03000000": [43, 45], "0x03030000": [11, 32], "1": [0, 2, 3, 4, 5, 6, 8, 9, 15, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 30, 36, 39, 40, 41, 42, 43, 44, 45], "10": [1, 4, 5, 8, 10, 11, 12, 15, 19, 20, 22, 25, 26, 29, 31, 32, 33, 36, 40, 41], "100": [12, 33], "10000": [2, 23], "1014": [43, 45], "10_p3": [16, 37], "11": [2, 5, 10, 12, 15, 23, 26, 31, 33, 36, 43, 45], "110": [5, 26], "117": [43, 45], "119": [43, 45], "12": [2, 8, 10, 15, 19, 20, 23, 29, 31, 36, 40, 41], "127": [43, 45], "13": [5, 15, 18, 19, 26, 36, 39, 40, 43, 45], "131": [5, 26], "135": [19, 40], "13_p3": [16, 37], "14": [8, 29, 43, 45], "141": [15, 36], "143": [5, 26], "14349": [16, 37], "148": [5, 26], "15": [15, 36], "16": [16, 37], "17": [8, 29], "170": [43, 45], "18": [8, 29], "180": [43, 45], "1800": [19, 40], "187": [43, 45], "18_p9": [16, 37], "193": [43, 45], "1999": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "2": [0, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45], "20": [12, 18, 33, 39], "20120407": [2, 8, 23, 29], "2017": [8, 29], "2020": [0, 2, 4, 5, 6, 8, 13, 14, 16, 21, 23, 25, 26, 27, 29, 34, 35, 37, 42, 43, 44, 45], "2022": [5, 13, 19, 26, 34, 40], "2023": [5, 26], "2024": [19, 40], "208": [0, 21], "23": [15, 36, 43, 45], "234": [43, 45], "24": [2, 8, 19, 23, 29, 40, 43, 45], "25": [43, 45], "26": [8, 29], "27": [2, 8, 23, 29], "28": [15, 36], "29": [5, 26], "292": [5, 26], "2934": [43, 45], "2_7": [4, 25, 43, 45], "2_pkg_setup": [2, 23], "2d": [14, 35], "2e": [18, 39], "2to3": [6, 27], "3": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45], "30": [5, 11, 19, 26, 32, 40], "31": [2, 15, 23, 36], "310": [20, 41], "34": [43, 45], "35": [20, 41], "36": [20, 41], "360": [2, 23], "36e46173a288c1c40853ffdb712c67e0e022df0e1ce50b7b1b50066b74d4": [18, 39], "38": [5, 20, 26, 41], "3_": [4, 25], "3_6": [14, 35, 43, 45], "3_7": [14, 35, 43, 45], "3_8": [43, 45], "3_p30": [0, 21], "4": [0, 3, 5, 8, 9, 10, 11, 12, 14, 15, 21, 24, 26, 29, 30, 31, 32, 33, 35, 36, 43, 45], "40": [12, 20, 33, 41], "42": [2, 23], "420": [3, 24], "423": [15, 36], "425": [5, 26], "427": [18, 39], "440": [18, 39], "48": [5, 26], "492": [16, 37], "4_p1": [16, 37], "5": [0, 2, 5, 7, 8, 9, 11, 14, 15, 16, 18, 19, 21, 23, 26, 28, 29, 30, 32, 35, 36, 37, 39, 40, 42, 43, 44, 45], "503": [15, 36], "517": [1, 3, 6, 7, 10, 12, 22, 24, 27, 28, 31, 33], "524": [43, 45], "54": [43, 45], "577": [19, 40], "578": [43, 45], "583": [19, 40], "59": [15, 36], "596": [43, 45], "5a": [43, 45], "6": [0, 1, 2, 4, 5, 6, 8, 11, 12, 14, 15, 16, 19, 21, 22, 23, 25, 26, 27, 29, 32, 33, 35, 36, 37, 40, 42, 43, 44, 45], "60": [15, 36], "62": [15, 36], "621": [1, 22], "625": [18, 39], "655482": [0, 21], "66": [43, 45], "671": [43, 45], "6e5e8a57628095d8d0c8bbb38187afb0f3a42112": [2, 23], "7": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "70": [2, 23], "717": [5, 26], "73": [43, 45], "74": [43, 45], "7m": [16, 37], "8": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 15, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 36, 41, 42, 43, 44, 45], "80": [43, 45], "85": [43, 45], "87": [43, 45], "9": [2, 5, 10, 12, 15, 18, 20, 23, 26, 31, 33, 36, 39, 41, 43, 45], "90": [2, 14, 23, 35], "93f52f6d4f70f4e18dc71deeaae0ec1e9100a50f": [16, 37], "975": [43, 45], "991": [43, 45], "9_p2": [16, 37], "A": [0, 1, 2, 4, 6, 7, 8, 10, 11, 15, 19, 20, 21, 22, 23, 25, 27, 28, 29, 31, 32, 36, 40, 41], "As": [1, 3, 5, 6, 7, 8, 11, 12, 13, 15, 16, 19, 22, 24, 26, 27, 28, 29, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45], "At": [2, 5, 11, 15, 17, 20, 23, 26, 32, 36, 38, 41], "But": [43, 45], "By": [5, 6, 11, 19, 26, 27, 32, 40], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 43, 45], "If": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "In": [0, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "It": [0, 1, 3, 4, 5, 6, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "Its": [7, 12, 18, 28, 33, 39], "No": [3, 24, 43, 45], "Not": [19, 40, 43, 45], "On": [11, 32], "One": [16, 37, 43, 45], "That": [2, 16, 23, 37, 43, 45], "The": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "Their": [6, 9, 20, 27, 30, 41], "Then": [12, 33], "There": [1, 3, 5, 8, 9, 15, 16, 19, 20, 22, 24, 26, 29, 30, 36, 37, 40, 41, 43, 45], "These": [1, 5, 6, 7, 11, 12, 13, 15, 19, 22, 26, 27, 28, 32, 33, 34, 36, 40, 43, 45], "To": [5, 6, 8, 9, 12, 15, 16, 19, 20, 26, 27, 29, 30, 33, 36, 37, 40, 41, 42, 44], "With": [6, 27, 43, 45], "_": [5, 12, 15, 18, 26, 33, 36, 39, 43, 45], "____________________": [43, 45], "_____________________": [19, 40], "______________________": [19, 40], "__dict__": [43, 45], "__import__": [3, 24], "__init__": [1, 3, 5, 9, 19, 20, 22, 24, 26, 30, 40, 41, 43, 45], "__legacy__": [5, 26], "__main__": [5, 26, 43, 45], "__name__": [3, 24], "__path__": [3, 24], "__pycache__": [20, 41], "_all": [5, 8, 26, 29], "_alpha": [18, 39], "_beta": [18, 39], "_bootstrap": [43, 45], "_distribut": [5, 26], "_do_pars": [5, 26], "_feedparser_sgmllib": [9, 30], "_find_and_load": [43, 45], "_find_and_load_unlock": [43, 45], "_gcd_import": [43, 45], "_get_vers": [5, 26], "_hashtabl": [5, 26], "_importtestmodul": [43, 45], "_install_setup_requir": [5, 26], "_lib": [5, 26], "_load_unlock": [43, 45], "_make_test_flaki": [10, 31], "_multical": [43, 45], "_overridesdir": [14, 35], "_p": [18, 39], "_pytest": [19, 40, 43, 45], "_python_all_impl": [12, 33], "_python_historical_impl": [12, 33], "_python_impl_match": [12, 33], "_python_set_impl": [12, 33], "_python_verify_pattern": [12, 33], "_rc": [2, 18, 23, 39], "_run_cod": [43, 45], "_run_module_as_main": [43, 45], "_rust": [5, 26], "_tslib": [5, 26], "abi": [11, 18, 32, 39], "abil": [5, 6, 26, 27], "abitag": [18, 39], "abl": [3, 15, 24, 36], "abort": [10, 31], "about": [3, 5, 6, 13, 15, 16, 24, 26, 27, 34, 36, 37, 43, 45], "abov": [0, 1, 6, 8, 12, 13, 15, 19, 20, 21, 22, 27, 29, 33, 34, 36, 40, 41, 42, 43, 44, 45], "absolut": [0, 1, 9, 15, 21, 22, 30, 36, 42, 43, 44, 45], "abstract": [7, 14, 18, 28, 35, 39], "accept": [0, 1, 4, 5, 6, 9, 12, 15, 16, 18, 19, 20, 21, 22, 25, 26, 27, 30, 33, 36, 37, 39, 40, 41], "access": [0, 10, 11, 19, 21, 31, 32, 40], "accompani": [11, 32], "accord": [8, 18, 29, 39], "account": [2, 8, 11, 15, 23, 29, 32, 36, 43, 45], "acct": [2, 23], "achiev": [0, 8, 11, 16, 21, 29, 32, 37], "across": [5, 11, 26, 32, 43, 45], "act": [3, 24], "action": [3, 15, 24, 36, 43, 45], "activ": [8, 17, 29, 38], "actual": [1, 5, 6, 8, 9, 11, 12, 15, 16, 18, 19, 22, 26, 27, 29, 30, 32, 33, 36, 37, 39, 40, 43, 45], "ad": [1, 5, 7, 10, 11, 13, 14, 19, 22, 26, 28, 31, 32, 34, 35, 40], "adapt": [18, 39], "add": [1, 2, 5, 6, 8, 12, 15, 18, 19, 20, 22, 23, 26, 27, 29, 33, 36, 39, 40, 41, 42, 43, 44, 45], "addit": [1, 2, 4, 6, 8, 9, 10, 11, 12, 13, 15, 18, 19, 22, 23, 25, 27, 29, 30, 31, 32, 33, 34, 36, 39, 40, 43, 45], "addition": [5, 9, 11, 14, 26, 30, 32, 35], "addnod": [3, 24], "addopt": [5, 26], "address": [6, 11, 16, 27, 32, 37], "adishatz": [4, 25], "adjust": [4, 9, 11, 16, 25, 30, 32, 37], "admin": [2, 8, 23, 29], "advanc": [10, 31], "advantag": [4, 5, 7, 19, 25, 26, 28, 40, 43, 45], "advis": [43, 45], "affect": [9, 11, 14, 18, 30, 32, 35, 39], "aforement": [7, 13, 16, 18, 28, 34, 37, 39], "after": [3, 6, 9, 11, 12, 13, 15, 16, 18, 19, 20, 24, 27, 30, 32, 33, 34, 36, 37, 39, 40, 41, 43, 45], "afterward": [11, 14, 15, 32, 35, 36, 43, 45], "again": [1, 2, 15, 22, 23, 36, 43, 45], "against": [0, 4, 7, 9, 11, 12, 14, 15, 19, 21, 25, 28, 30, 32, 33, 35, 36, 40, 42, 43, 44, 45], "agnost": [2, 23], "aid": [18, 39], "aim": [5, 11, 15, 17, 20, 26, 32, 36, 38, 41], "aiohttp": [5, 19, 26, 40], "alabast": [5, 6, 26, 27], "alias": [5, 16, 26, 37], "alik": [6, 7, 11, 13, 27, 28, 32, 34], "all": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "allow": [7, 28, 43, 45], "allow_test": [43, 45], "alon": [11, 32], "along": [2, 5, 6, 7, 11, 12, 13, 20, 23, 26, 27, 28, 32, 33, 34, 41, 42, 43, 44, 45], "alongsid": [5, 6, 26, 27], "alpha": [0, 2, 4, 5, 6, 8, 11, 12, 14, 21, 23, 25, 26, 27, 29, 32, 33, 35, 42, 43, 44, 45], "alphanumer": [18, 39], "alreadi": [9, 12, 14, 15, 16, 20, 30, 33, 35, 36, 37, 41, 43, 45], "also": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 43, 45], "alter": [5, 19, 26, 40], "altern": [3, 5, 6, 8, 10, 16, 17, 18, 24, 26, 27, 29, 31, 37, 38, 39, 43, 45], "altogeth": [43, 45], "alwai": [5, 6, 8, 11, 13, 16, 17, 18, 19, 20, 26, 27, 29, 32, 34, 37, 38, 39, 40, 41], "am": [14, 35], "amd64": [0, 2, 4, 5, 6, 8, 12, 14, 21, 23, 25, 26, 27, 29, 33, 35, 42, 43, 44, 45], "among": [5, 17, 26, 38], "amount": [11, 12, 32, 33, 43, 45], "an": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 39, 41, 42, 43, 44, 45], "analysi": [2, 23, 42, 44], "ani": [1, 2, 3, 5, 6, 7, 10, 14, 16, 18, 19, 20, 22, 23, 24, 26, 27, 28, 31, 35, 37, 39, 40, 41, 43, 45], "annot": [16, 37], "announc": [12, 33], "anoth": [0, 8, 9, 14, 15, 16, 18, 19, 20, 21, 29, 30, 35, 36, 37, 39, 40, 41, 43, 45], "anticip": [15, 36], "anymor": [8, 11, 29, 32], "anyth": [9, 16, 30, 37], "anywai": [5, 16, 26, 37], "apach": [0, 2, 4, 5, 8, 21, 23, 25, 26, 29, 43, 45], "apb": [2, 23], "api": [0, 2, 5, 9, 10, 11, 13, 14, 16, 21, 23, 26, 30, 31, 32, 34, 35, 37], "app": [0, 2, 4, 5, 8, 12, 14, 15, 18, 20, 21, 23, 25, 26, 29, 33, 35, 36, 39, 41, 43, 45], "appeas": [43, 45], "append": [5, 14, 15, 18, 26, 35, 36, 39, 43, 45], "appli": [1, 4, 5, 6, 7, 12, 15, 19, 20, 22, 25, 26, 27, 28, 33, 36, 40, 41, 42, 43, 44, 45], "applic": [2, 9, 11, 23, 30, 32], "approach": [1, 5, 7, 8, 12, 16, 19, 22, 26, 28, 29, 33, 37, 40, 43, 45], "appropri": [0, 2, 4, 5, 6, 7, 9, 11, 12, 15, 18, 19, 21, 23, 25, 26, 27, 28, 30, 32, 33, 36, 39, 40, 42, 43, 44, 45], "ar": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45], "arab": [42, 44], "arabey": [42, 44], "arabic2tran": [42, 44], "arbitrari": [2, 13, 18, 23, 34, 39, 43, 45], "arch": [2, 5, 8, 11, 12, 18, 19, 23, 26, 29, 32, 33, 39, 40], "architectur": [4, 11, 25, 32], "archiv": [0, 2, 4, 10, 21, 23, 25, 31, 42, 43, 44, 45], "area": [43, 45], "arg": [16, 37], "argcomplet": [43, 45], "argpars": [43, 45], "argspec": [16, 37], "argument": [4, 6, 10, 13, 16, 25, 27, 31, 34, 37, 43, 45], "aris": [43, 45], "arm": [0, 2, 4, 5, 6, 8, 21, 23, 25, 26, 27, 29, 42, 43, 44, 45], "arm64": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "around": [3, 5, 6, 11, 12, 19, 24, 26, 27, 32, 33, 40, 43, 45], "arrai": [5, 26], "artifact": [20, 41], "asgiref": [19, 40], "asgitest": [19, 40], "ask": [11, 15, 32, 36], "asn1": [5, 26], "asn1_der": [5, 26], "assert": [5, 10, 20, 26, 31, 41], "assert_called_with": [16, 37], "assertequ": [16, 37], "assertregexpmatch": [16, 37], "assign": [1, 19, 22], "assum": [0, 1, 4, 5, 6, 9, 13, 15, 21, 22, 25, 26, 27, 30, 34, 36, 42, 43, 44, 45], "assumpt": [5, 26], "async": [16, 19, 37, 40], "asyncio": [11, 19, 32, 40, 43, 45], "attempt": [16, 20, 37, 41, 43, 45], "attr": [5, 12, 26, 33, 43, 45], "attribut": [3, 10, 16, 24, 31, 37], "attributeerror": [16, 37], "author": [0, 2, 4, 5, 6, 8, 9, 10, 12, 14, 20, 21, 23, 25, 26, 27, 29, 30, 31, 33, 35, 41, 42, 43, 44, 45], "autoload": [10, 31], "autom": [2, 23], "automak": [16, 37], "automat": [3, 4, 5, 6, 12, 15, 18, 19, 20, 24, 25, 26, 27, 33, 36, 39, 40, 41, 43, 45], "autoreconf": [16, 37], "autotool": [0, 5, 6, 10, 16, 21, 26, 27, 31, 37, 42, 44], "auxiliari": [20, 41], "avail": [4, 5, 6, 8, 11, 13, 15, 16, 17, 25, 26, 27, 29, 32, 34, 36, 37, 38], "avoid": [5, 6, 8, 10, 15, 16, 17, 26, 27, 29, 31, 36, 37, 38, 43, 45], "awai": [6, 7, 18, 27, 28, 39], "await": [16, 37], "b": [0, 18, 21, 39], "b64_encodebyt": [16, 37], "b64decod": [16, 37], "b64encod": [16, 37], "babel": [15, 36], "babelex": [18, 39], "back": [3, 6, 16, 24, 27, 37, 43, 45], "backend": [4, 10, 12, 13, 25, 31, 33, 34], "backport": [4, 6, 10, 12, 25, 27, 31, 33], "backtrac": [43, 45], "backward": [5, 11, 16, 26, 32, 37], "bad": [9, 16, 30, 37], "badurl": [16, 37], "ban": [13, 34], "bar": [16, 37], "base": [1, 4, 5, 7, 8, 10, 12, 14, 15, 22, 25, 26, 28, 29, 31, 33, 35, 36, 42, 43, 44, 45], "baselin": [12, 19, 33, 40], "basemap": [42, 44], "basenam": [1, 22], "bash": [0, 5, 7, 8, 9, 21, 26, 28, 29, 30, 42, 43, 44, 45], "basi": [7, 28], "basic": [9, 10, 30, 31], "batch": [12, 20, 33, 41], "bdepend": [0, 1, 2, 4, 5, 6, 8, 12, 14, 19, 21, 22, 23, 25, 26, 27, 29, 33, 35, 40, 42, 43, 44, 45], "bear": [15, 36], "becam": [4, 11, 25, 32], "becaus": [2, 6, 11, 12, 15, 19, 20, 23, 27, 32, 33, 36, 40, 41, 43, 45], "becom": [11, 16, 19, 32, 37, 40], "been": [3, 5, 6, 8, 11, 12, 13, 14, 16, 19, 20, 24, 26, 27, 29, 32, 33, 34, 35, 37, 40, 41], "befor": [1, 4, 5, 8, 9, 10, 12, 14, 16, 22, 25, 26, 29, 30, 31, 33, 35, 37], "beforehand": [5, 26], "beginn": [17, 38], "behav": [5, 8, 26, 29], "behavior": [8, 11, 16, 18, 19, 29, 32, 37, 39, 40], "being": [1, 3, 5, 6, 8, 9, 11, 12, 15, 16, 18, 19, 22, 24, 26, 27, 29, 30, 32, 33, 36, 37, 39, 40, 43, 45], "beings": [8, 29], "belong": [1, 22, 43, 45], "below": [5, 8, 26, 29], "benefit": [5, 7, 26, 28], "besid": [2, 6, 11, 14, 20, 23, 27, 32, 35, 41], "best": [0, 7, 12, 16, 17, 18, 21, 28, 33, 37, 38, 39], "beta": [11, 12, 32, 33], "better": [3, 6, 11, 12, 13, 14, 20, 24, 27, 32, 33, 34, 35, 41], "between": [1, 3, 5, 8, 10, 11, 13, 16, 18, 22, 24, 26, 29, 31, 32, 34, 37, 39], "bewar": [43, 45], "beyond": [17, 38], "bidirect": [11, 32], "big": [8, 29], "bin": [1, 2, 5, 7, 8, 9, 12, 22, 23, 26, 28, 29, 30, 33, 42, 43, 44, 45], "binari": [5, 9, 12, 16, 26, 30, 33, 37], "bind": [0, 2, 5, 8, 14, 21, 23, 26, 29, 35, 42, 44], "bindir": [8, 29], "binpkg": [12, 33], "bison": [8, 29], "bit": [1, 12, 17, 22, 33, 38], "bitprophet": [6, 27], "black": [4, 25], "bleach": [43, 45], "blender_boolean": [20, 41], "block": [0, 8, 13, 19, 21, 29, 34, 40, 43, 45], "blueman": [20, 41], "bmrblib": [2, 23], "boltzmann": [2, 23], "boolean": [5, 16, 26, 37], "boost": [2, 7, 23, 28], "bootstrap": [5, 6, 10, 26, 27, 31], "both": [0, 1, 3, 4, 5, 6, 7, 8, 12, 13, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44], "bottom": [43, 45], "bound": [3, 11, 16, 24, 32, 37], "box": [11, 13, 32, 34], "branch": [0, 11, 16, 21, 32, 37, 43, 45], "break": [11, 15, 16, 32, 36, 37], "breakag": [5, 26, 43, 45], "broken": [5, 6, 19, 26, 27, 40, 43, 45], "brython": [11, 32], "bsd": [0, 2, 5, 6, 8, 14, 21, 23, 26, 27, 29, 35, 42, 44], "bu": [0, 21], "bug": [0, 5, 6, 12, 20, 21, 26, 27, 33, 41, 43, 45], "bugfix": [11, 32], "buggi": [14, 35], "bugzilla": [15, 36], "build": [3, 9, 10, 11, 15, 16, 18, 20, 24, 30, 31, 32, 36, 37, 39, 41, 43, 45], "build_api": [5, 26], "build_config": [2, 23], "build_dir": [2, 3, 9, 14, 23, 24, 30, 35, 43, 45], "build_ext": [5, 6, 26, 27, 43, 45], "build_meta": [5, 26], "build_pdb2pka": [2, 23], "buildapi": [5, 26], "builder": [15, 36], "buildscript": [2, 23], "buildtool": [2, 23, 42, 44], "built": [0, 1, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 24, 26, 27, 28, 29, 32, 33, 35, 37, 38, 39, 42, 43, 44, 45], "builtin": [2, 23], "bump": [5, 12, 15, 18, 26, 33, 36, 39], "bundl": [2, 5, 12, 23, 26, 33], "busi": [19, 40], "bypass": [1, 22], "byroot": [16, 37], "byte": [10, 16, 31, 37], "byte_compil": [9, 30], "bytecod": [10, 31], "bz2": [2, 8, 23, 29, 42, 44], "bzip2": [8, 29], "c": [1, 2, 6, 8, 9, 10, 11, 14, 22, 23, 27, 29, 30, 31, 32, 35], "c0459b92bc4a42b08281e69b8802d24c5d3415d4": [18, 39], "cach": [14, 35], "cachedir": [43, 45], "cairo": [14, 35], "calcul": [2, 23], "call": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "callabl": [16, 37], "caller": [43, 45], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "cangjian": [14, 35], "cannot": [2, 3, 4, 5, 9, 11, 23, 24, 25, 26, 30, 32, 43, 45], "canon": [15, 18, 36, 39], "cantera": [2, 23], "canva": [14, 35], "capabl": [0, 21], "captur": [19, 40, 43, 45], "care": [1, 2, 5, 7, 9, 15, 22, 23, 26, 28, 30, 36, 43, 45], "cargo": [10, 31], "cargo_crate_uri": [5, 26], "cargo_opt": [5, 26], "cargo_src_test": 5, "cargo_src_unpack": [5, 26], "carri": [15, 16, 36, 37], "case": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44], "cat": [2, 5, 23, 26], "catch": [20, 41, 43, 45], "categori": [1, 15, 22, 36], "caus": [1, 4, 5, 8, 9, 13, 15, 18, 19, 20, 22, 25, 26, 29, 30, 34, 36, 39, 40, 41, 43, 45], "caution": [43, 45], "cc": [2, 9, 23, 30], "cc_flag": [2, 23], "cd": [2, 5, 9, 12, 23, 26, 30, 33, 43, 45], "ceas": 43, "certifi": [8, 15, 29, 36], "cf": [5, 12, 26, 33], "cffi": [10, 31], "cfg": [1, 3, 5, 6, 15, 19, 20, 22, 24, 26, 27, 36, 40, 41, 43, 45], "cflag": [5, 9, 26, 30, 43, 45], "cgit": [0, 21], "chain": [0, 21], "chanc": [19, 40], "chang": [5, 6, 8, 9, 10, 11, 13, 14, 15, 18, 20, 26, 27, 29, 30, 31, 32, 34, 35, 36, 39, 41, 43, 45], "changelog": [20, 41], "chapter": [2, 5, 8, 9, 23, 26, 29, 30], "charact": [15, 18, 36, 39], "chardet": [8, 29, 43, 45], "cheap": [1, 22], "check": [0, 5, 6, 9, 10, 12, 13, 16, 17, 21, 26, 27, 30, 31, 33, 34, 37, 38, 43, 45], "checklist": [10, 31], "checkout": [5, 12, 26, 33, 43, 45], "cheetah3": [2, 23], "chemic": [2, 23], "chemistri": [2, 23], "cherri": [12, 33], "chewi": [2, 23], "choic": [2, 6, 7, 13, 18, 23, 27, 28, 34, 39, 43, 45], "choos": [10, 11, 14, 19, 31, 32, 35, 40], "chose": [13, 34], "chosen": [12, 33], "chrpath": [2, 8, 23, 29], "ci": [5, 26, 43, 45], "cinnamon": [0, 21], "circular": [12, 33], "class": [0, 1, 5, 16, 19, 21, 22, 26, 37, 40], "classifi": [1, 6, 22, 27], "clean": [6, 11, 13, 27, 32, 34], "cleanli": [6, 12, 27, 33], "cleanup": [13, 34], "clear": [11, 15, 32, 36], "clearli": [5, 20, 26, 41, 43, 45], "cli": [4, 5, 25, 26], "click": [4, 25], "client": [2, 8, 9, 11, 14, 23, 29, 30, 32, 35], "clone": [12, 33], "close": [43, 45], "closest": [6, 27], "cmake": [0, 5, 6, 21, 26, 27, 42, 44], "cmake_src_configur": [9, 30, 42, 44], "cmake_src_instal": [9, 30], "cmd": [43, 45], "cmd2": [43, 45], "co": [10, 31, 43, 45], "code": [0, 1, 3, 5, 6, 7, 8, 9, 11, 13, 14, 16, 19, 20, 21, 22, 24, 26, 27, 28, 29, 30, 32, 34, 35, 37, 40, 41, 42, 43, 44, 45], "collada": [5, 26], "collect": [6, 19, 27, 40, 43, 45], "collid": [3, 19, 24, 40, 43, 45], "collis": [5, 15, 26, 36, 43, 45], "color": [5, 26], "colorama": [43, 45], "coloredlog": [5, 26], "column": [43, 45], "com": [0, 2, 4, 5, 6, 8, 12, 14, 16, 18, 21, 23, 25, 26, 27, 29, 33, 35, 37, 39, 43, 45], "combin": [0, 2, 3, 5, 10, 11, 12, 13, 16, 17, 18, 19, 21, 23, 24, 26, 31, 32, 33, 34, 37, 38, 39, 40, 42, 43, 44, 45], "come": [5, 13, 19, 26, 34, 40], "comma": [19, 40], "command": [10, 14, 15, 19, 20, 31, 35, 36, 40, 41, 43, 45], "commit": [2, 12, 16, 18, 23, 33, 37, 39, 43, 45], "common": [0, 3, 5, 6, 7, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 24, 26, 27, 28, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "commonli": [1, 2, 3, 5, 6, 9, 11, 18, 22, 23, 24, 26, 27, 30, 32, 39], "compar": [15, 16, 36, 37], "compat": [0, 1, 2, 4, 5, 6, 7, 9, 11, 13, 16, 18, 21, 22, 23, 25, 26, 27, 28, 30, 32, 34, 37, 39, 42, 44], "compet": [11, 32], "compil": [5, 6, 10, 11, 26, 27, 31, 32, 43, 45], "complet": [0, 5, 16, 17, 20, 21, 26, 37, 38, 41, 43, 45], "complex": [5, 7, 16, 18, 26, 28, 37, 39, 42, 44], "compliant": [5, 7, 18, 26, 28, 39], "compon": [2, 3, 8, 11, 14, 16, 23, 24, 29, 32, 35, 37], "composit": [42, 44], "comprehens": [15, 36], "compress": [5, 26], "compris": [5, 26], "concept": [1, 5, 10, 22, 26, 31], "concern": [3, 24], "condit": [6, 10, 12, 19, 27, 31, 33, 40, 43, 45], "condition": [0, 1, 2, 4, 5, 11, 12, 14, 15, 19, 21, 22, 23, 25, 26, 32, 33, 35, 36, 40, 42, 44], "conf": [5, 6, 19, 20, 26, 27, 40, 41], "config": [5, 9, 12, 26, 30, 33], "configfil": [43, 45], "configur": [5, 6, 8, 13, 14, 20, 26, 27, 29, 34, 35, 41, 43, 45], "confirm": [43, 45], "conflict": [15, 36], "conform": [15, 18, 36, 39], "confus": [15, 19, 36, 40], "connect": [43, 45], "consequ": [19, 40], "consid": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 15, 16, 20, 22, 23, 24, 26, 27, 28, 29, 32, 33, 35, 36, 37, 41], "consider": [16, 19, 37, 40], "consist": [1, 6, 9, 12, 13, 14, 15, 22, 27, 30, 33, 34, 35, 36], "console_script": [5, 6, 26, 27], "constant": [20, 41], "construct": [2, 4, 8, 23, 25, 29, 42, 44], "consum": [5, 6, 26, 27, 43, 45], "contain": [1, 3, 4, 5, 6, 7, 12, 13, 15, 20, 22, 24, 25, 26, 27, 28, 33, 34, 36, 41], "content": [3, 5, 7, 24, 26, 28], "context": [16, 37, 42, 43, 44, 45], "contigu": [18, 39], "continu": [8, 12, 29, 33, 43, 45], "contrari": [11, 16, 32, 37], "control": [2, 4, 5, 19, 23, 25, 26, 40], "conveni": [1, 4, 5, 6, 7, 19, 20, 22, 25, 26, 27, 28, 40, 41, 43, 45], "convers": [5, 6, 26, 27], "convert": [6, 8, 13, 27, 29, 34], "convinc": [4, 25, 43], "copi": [1, 3, 5, 6, 9, 11, 15, 20, 22, 24, 26, 27, 30, 32, 36, 41, 42, 43, 44, 45], "copyright": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "core": [2, 5, 20, 23, 26, 41, 43, 45], "coreutil": [8, 29], "correct": [1, 5, 6, 7, 9, 10, 15, 16, 18, 20, 22, 26, 27, 28, 30, 31, 36, 37, 39, 41, 42, 44], "correctli": [0, 1, 5, 6, 7, 9, 11, 12, 13, 15, 16, 19, 21, 22, 26, 27, 28, 30, 32, 33, 34, 36, 37, 40, 43, 45], "correspond": [5, 11, 12, 15, 26, 32, 33, 36], "cost": [5, 11, 26, 32], "could": [0, 2, 3, 5, 6, 8, 9, 15, 16, 18, 19, 20, 21, 23, 24, 26, 27, 29, 30, 36, 37, 39, 40, 41, 42, 43, 44, 45], "cov": [5, 19, 26, 40, 43, 45], "cover": [1, 5, 6, 13, 22, 26, 27, 34, 43, 45], "coverag": [1, 5, 15, 19, 22, 26, 36, 40, 43, 45], "cp": [43, 45], "cp39": [18, 39], "cpp": [2, 23], "cpython": [1, 4, 5, 9, 11, 13, 18, 20, 22, 25, 26, 30, 32, 34, 39, 41], "crate": [5, 26], "creat": [1, 3, 4, 5, 6, 12, 13, 15, 16, 20, 22, 24, 25, 26, 27, 33, 34, 36, 37, 41, 43, 45], "creativ": [10, 31], "cropgtk": [9, 30], "cross": [5, 26], "crucial": [15, 36], "cruft": [13, 34], "cryptic": [5, 26], "cryptographi": [8, 15, 29, 36], "csound": [42, 44], "current": [0, 5, 6, 11, 12, 13, 15, 19, 21, 26, 27, 32, 33, 34, 36, 40, 43, 45], "custom": [1, 2, 3, 6, 10, 13, 15, 16, 19, 20, 22, 23, 24, 27, 31, 34, 36, 37, 40, 41], "cx": [15, 36], "cxx": [2, 23], "cxx_flag": [2, 23], "cxxflag": [2, 23], "cycl": [10, 12, 31, 33], "cyclic": [5, 26], "cygwin": [6, 27, 43, 45], "cython": [2, 10, 14, 23, 31, 35, 42, 44], "d": [0, 2, 3, 8, 9, 14, 18, 19, 21, 23, 24, 29, 30, 35, 39, 40], "d1": [16, 37], "d2": [16, 37], "d3": [16, 37], "daemon": [2, 8, 23, 29], "dai": [11, 32], "danger": [16, 37], "dash": [5, 26], "dask": [5, 19, 26, 40], "data": [0, 2, 5, 6, 9, 16, 21, 23, 26, 27, 30, 37, 42, 43, 44, 45], "databas": [2, 4, 23, 25], "date": [15, 17, 20, 36, 38, 41, 43, 45], "dateutil": [4, 25], "dbpathprefix": [2, 23], "dbu": [0, 2, 21, 23], "dbuild_python_interfac": [42, 44], "dbuild_python_opcod": [42, 44], "dead": [12, 33], "deadlock": [10, 31], "deal": [2, 7, 8, 10, 15, 23, 28, 29, 31, 36], "debug": [2, 5, 23, 26], "decid": [19, 40], "declar": [0, 1, 2, 5, 6, 8, 9, 11, 14, 19, 21, 22, 23, 26, 27, 29, 30, 32, 35, 40, 42, 43, 44, 45], "declare_namespac": [3, 24], "decode_usenet_chunk": [43, 45], "decodebyt": [16, 37], "decor": [16, 19, 37, 40, 43, 45], "dedic": [5, 6, 12, 14, 26, 27, 33, 35], "deep": [17, 38], "def": [16, 19, 37, 40, 43, 45], "default": [1, 2, 5, 6, 7, 8, 9, 11, 13, 14, 15, 18, 19, 20, 22, 23, 26, 27, 28, 29, 30, 32, 34, 35, 36, 39, 40, 41, 42, 43, 44, 45], "default_src_prepar": [5, 26], "defin": [0, 1, 5, 6, 11, 21, 22, 26, 27, 32, 42, 43, 44, 45], "definit": [6, 27], "delai": [19, 40], "delet": [2, 14, 23, 35], "deliber": [5, 26], "demonstr": [0, 5, 21, 26, 42, 44], "dep": [0, 5, 13, 19, 21, 26, 34, 40], "deped": [19, 40], "depend": [3, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 24, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41], "dependneci": [5, 26], "depenend": [11, 32], "depgraph": [12, 33], "deprec": [1, 3, 5, 10, 11, 13, 22, 24, 26, 31, 32, 34, 43, 45], "deprecationwarn": [19, 40], "deriv": [5, 6, 26, 27], "desc": [12, 33], "describ": [0, 5, 6, 8, 9, 15, 18, 20, 21, 26, 27, 29, 30, 36, 39, 41], "descript": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "deselect": [4, 12, 19, 25, 33, 40, 43, 45], "design": [1, 22, 42, 44], "desir": [13, 16, 20, 34, 37, 41, 43, 45], "destdir": [2, 8, 9, 20, 23, 29, 30, 41], "destin": [43, 45], "detail": [2, 7, 9, 11, 13, 16, 20, 23, 28, 30, 32, 34, 37, 41, 43, 45], "detect": [3, 5, 9, 15, 24, 26, 30, 36, 43, 45], "detector": [43, 45], "determin": [5, 6, 7, 11, 26, 27, 28, 32, 42, 43, 44, 45], "dev": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44, 45], "dev0": [15, 36], "dev20220515": [15, 36], "dev20220522": [15, 36], "devel": [8, 29], "develop": [0, 1, 7, 11, 15, 17, 19, 21, 22, 28, 32, 36, 38, 40, 43], "devic": [2, 8, 23, 29], "deviceclass": [20, 41], "devmanu": [43, 45], "dict": [5, 26, 42, 44], "dict2db": [42, 44], "dictionari": [6, 27, 42, 44], "did": [3, 13, 16, 24, 34, 37, 43, 45], "die": [2, 3, 5, 8, 9, 14, 16, 19, 23, 24, 26, 29, 30, 35, 37, 40, 43, 45], "diff": [12, 33], "differ": [0, 1, 3, 5, 9, 10, 11, 15, 16, 19, 21, 22, 24, 26, 30, 31, 32, 36, 37, 40, 43, 45], "dir": [5, 14, 26, 35], "direct": [6, 14, 27, 35], "directli": [1, 5, 6, 7, 9, 11, 13, 16, 19, 22, 26, 27, 28, 30, 32, 34, 37, 40, 43, 45], "directori": [3, 5, 6, 9, 10, 11, 12, 13, 14, 16, 18, 20, 24, 26, 27, 30, 31, 32, 33, 34, 35, 37, 39, 41, 43, 45], "dirti": [15, 36], "disabl": [2, 5, 8, 10, 11, 12, 14, 18, 23, 26, 29, 31, 32, 33, 35, 39, 42, 43, 44, 45], "disable_tiff": [5, 26], "disable_webp": [5, 26], "discontinu": [11, 32], "discourag": [3, 6, 24, 27], "discoveri": [19, 20, 40, 41, 43, 45], "discret": [19, 40], "disjoint": [10, 31], "disk": [19, 20, 40, 41, 43, 45], "displai": [43, 45], "dist": [5, 26], "distfil": [5, 16, 18, 26, 37, 39, 42, 44], "distinguish": [3, 5, 13, 24, 26, 34], "distribut": [0, 2, 4, 5, 6, 8, 14, 15, 16, 17, 20, 21, 23, 25, 26, 27, 29, 35, 36, 37, 38, 41, 42, 43, 44, 45], "distutil": [1, 3, 4, 9, 10, 13, 14, 18, 19, 20, 22, 24, 25, 30, 31, 34, 35, 39, 40, 41, 42, 43, 44, 45], "distutils_all_subphase_impl": [8, 29], "distutils_arg": [5, 13, 26, 34], "distutils_dep": [5, 26], "distutils_enable_sphinx": [5, 8, 26, 29], "distutils_enable_test": [4, 5, 10, 13, 19, 25, 26, 31, 34, 40], "distutils_ext": [5, 26], "distutils_in_source_build": [6, 27], "distutils_install_for_test": [6, 13, 27, 34, 43, 45], "distutils_opt": [5, 26], "distutils_pep517_instal": [43, 45], "distutils_single_impl": [5, 7, 26, 28], "distutils_strict_entry_point": [6, 27], "distutils_use_pep517": [5, 13, 26, 34], "distutils_use_setuptool": [5, 13, 26, 34], "django": [16, 37, 43, 45], "dlint": [5, 26], "dndebug": [43, 45], "do": [0, 1, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "doabl": [3, 24], "dobin": [2, 9, 23, 30], "doc": [1, 2, 5, 8, 22, 23, 26, 29, 42, 44], "docbook": [20, 41], "docinto": [5, 26], "docker": [12, 33], "docompress": [5, 26], "docstr": [20, 41], "document": [1, 2, 7, 8, 10, 11, 14, 16, 17, 22, 23, 28, 29, 31, 32, 35, 37, 38, 43, 45], "dodoc": [2, 5, 23, 26], "doe": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 39, 40, 41, 43, 45], "doin": [9, 30], "dom": [11, 32], "domain": [43, 45], "doman": [2, 23], "don": [5, 13, 26, 34], "done": [1, 3, 5, 6, 8, 9, 14, 15, 19, 22, 24, 26, 27, 29, 30, 35, 36, 40, 43, 45], "dot": [15, 18, 36, 39], "doubl": [42, 44], "doubt": [15, 36], "down": [11, 32], "downgrad": [8, 29], "download": [0, 2, 5, 8, 14, 21, 23, 26, 29, 35], "downstream": 43, "dpython3_include_dir": [13, 34], "dpython3_librari": [13, 34], "dpython_dest": [9, 30], "dpython_execut": [9, 30], "dpython_include_dir": [9, 30], "dpython_librari": [9, 30], "draw": [14, 35], "driver": [2, 23], "drop": [11, 16, 32, 37], "duali": [42, 44], "due": [10, 12, 14, 18, 20, 31, 33, 35, 39, 41], "dump": [16, 37, 43, 45], "duplic": [5, 14, 26, 35, 43, 45], "dure": [1, 5, 6, 7, 12, 13, 19, 20, 22, 26, 27, 28, 33, 34, 40, 41], "dynam": [2, 23], "e": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "each": [5, 6, 7, 11, 14, 26, 27, 28, 32, 35], "eapi": [0, 2, 4, 5, 6, 8, 10, 14, 21, 23, 25, 26, 27, 29, 31, 35, 42, 43, 44, 45], "eappli": [2, 23], "eapply_us": [2, 23], "earli": [7, 8, 12, 28, 29, 33, 43, 45], "earlier": [3, 13, 16, 24, 34, 37], "eas": [12, 15, 33, 36], "easi": [16, 19, 20, 37, 40, 41, 43, 45], "easier": [7, 18, 19, 20, 28, 39, 40, 41, 43, 45], "easiest": [5, 15, 26, 36, 42, 44], "easili": [5, 14, 19, 26, 35, 40, 43, 45], "eautoreconf": [14, 16, 35, 37], "ebuild": [0, 1, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "echo": [8, 20, 29, 41], "eclass": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 17, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 38, 40, 42, 43, 44, 45], "econf": [5, 26, 42, 44], "econf_sourc": [14, 35], "ecosystem": [5, 15, 17, 26, 36, 38], "ed": [2, 9, 15, 23, 30, 36], "edit": [16, 37], "editor": [5, 26], "effect": [5, 8, 11, 20, 26, 29, 32, 41], "effici": [5, 15, 26, 36], "effort": [12, 33], "egg": [5, 6, 26, 27], "eigen": [2, 23], "eigen3": [2, 23], "einstalldoc": [5, 8, 14, 26, 29, 35], "either": [1, 2, 5, 8, 9, 11, 13, 19, 20, 22, 23, 26, 29, 30, 32, 34, 40, 41, 43, 45], "electrostat": [2, 23], "elibc_freebsd": [2, 23], "elibc_glibc": [8, 29], "elog": [20, 41], "els": [2, 8, 11, 16, 23, 29, 32, 37], "emak": [5, 8, 9, 26, 29, 30], "emb": [16, 37], "embed": [1, 2, 9, 11, 22, 23, 30, 32], "emerg": [12, 20, 33, 41], "emesonarg": [5, 26], "empti": [4, 5, 15, 18, 19, 25, 26, 36, 39, 40], "en": [5, 26], "enabl": [0, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 19, 20, 21, 24, 25, 27, 28, 29, 31, 32, 33, 35, 36, 40, 41, 43, 45], "enable_tiff": [5, 26], "enable_webp": [5, 26], "encod": [16, 37, 43, 45], "encodebyt": [16, 37], "encourag": [5, 15, 26, 36], "end": [5, 6, 7, 9, 11, 14, 19, 26, 27, 28, 30, 32, 35, 40, 43, 45], "energi": [42, 44], "enforc": [1, 4, 5, 7, 8, 11, 19, 22, 25, 26, 28, 29, 32, 40, 43, 45], "enough": [1, 11, 22, 32, 43, 45], "ensur": [0, 1, 4, 5, 6, 9, 12, 14, 19, 20, 21, 22, 25, 26, 27, 30, 33, 35, 40, 41, 42, 44], "ensurepip": [18, 39], "enter": [11, 32], "entir": [3, 5, 9, 12, 13, 14, 18, 19, 24, 26, 30, 33, 34, 35, 39, 40, 43, 45], "entri": [1, 5, 12, 19, 20, 22, 26, 33, 40, 41], "entropi": [9, 30], "entry_point": [6, 19, 27, 40], "enum": [11, 32], "env": [9, 12, 30, 33], "env_var": [2, 23], "environ": [0, 5, 6, 10, 11, 13, 14, 16, 19, 21, 26, 27, 31, 32, 34, 35, 37, 40, 42, 44], "eof": [2, 5, 23, 26], "eol": [15, 16, 36, 37], "ep": [5, 26], "eprefix": [2, 5, 8, 9, 23, 26, 29, 30], "epydoc": [8, 29], "epytest": [4, 5, 6, 8, 12, 19, 25, 26, 27, 29, 33, 40, 43, 45], "epytest_deselect": [4, 12, 19, 25, 33, 40], "epytest_ignor": [19, 40], "epytest_timeout": [19, 40], "epytest_xdist": [19, 40], "epython": [1, 2, 5, 8, 9, 12, 13, 19, 22, 23, 26, 29, 30, 33, 34, 40, 43, 45], "equal": [15, 36, 43], "equival": [6, 8, 9, 13, 18, 27, 29, 30, 34, 39], "error": [0, 2, 5, 9, 12, 13, 19, 20, 21, 23, 26, 30, 33, 34, 40, 41, 43, 45], "escap": [4, 13, 25, 34, 42, 44], "escon": [2, 23], "eselect": [8, 29], "esetup": [5, 8, 26, 29], "especi": [5, 7, 18, 19, 20, 26, 28, 39, 40, 41, 43, 45], "establish": [1, 13, 22, 34, 43, 45], "etc": [1, 22], "eunittest": [43, 45], "eutil": [2, 23], "evalu": [13, 16, 34, 37], "even": [5, 8, 9, 11, 16, 19, 26, 29, 30, 32, 37, 40, 43, 45], "event": [3, 11, 19, 24, 32, 40], "event_loop": [19, 40], "eventlet": [19, 40], "eventu": [11, 12, 32, 33], "everi": [4, 5, 6, 8, 11, 14, 15, 16, 18, 19, 20, 25, 26, 27, 29, 32, 35, 36, 37, 39, 40, 41, 43, 45], "everyth": [2, 13, 19, 20, 23, 34, 40, 41], "ex": [12, 33], "exact": [3, 5, 11, 24, 26, 32, 42, 44], "exactli": [0, 7, 18, 21, 28, 39], "exampl": [0, 4, 5, 6, 7, 8, 9, 11, 12, 15, 16, 17, 18, 19, 21, 25, 26, 27, 28, 29, 30, 32, 33, 36, 37, 38, 39, 40, 42, 43, 44, 45], "exce": [19, 40], "except": [6, 7, 9, 11, 12, 16, 27, 28, 30, 32, 33, 37], "exclud": [20, 41], "exec": [1, 8, 9, 11, 12, 22, 29, 30, 32, 33, 43, 45], "exec_modul": [43, 45], "exec_prefix": [16, 37], "execnet": [18, 39], "execut": [5, 6, 7, 9, 11, 12, 13, 14, 26, 27, 28, 30, 32, 33, 34, 35, 43, 45], "exist": [5, 10, 11, 12, 16, 20, 26, 31, 32, 33, 37, 41], "exit": [5, 16, 20, 26, 37, 41, 43, 45], "expand": [4, 25], "expans": [4, 25], "expect": [6, 11, 16, 19, 20, 27, 32, 37, 40, 41, 43, 45], "experienc": [19, 40], "expert": [5, 10, 14, 26, 31, 35, 43, 45], "explain": [0, 1, 6, 20, 21, 22, 27, 41], "explan": [43, 45], "explicit": [3, 4, 5, 6, 18, 19, 24, 25, 26, 27, 39, 40, 42, 43, 44, 45], "explicitli": [1, 5, 7, 8, 13, 18, 19, 20, 22, 26, 28, 29, 34, 39, 40, 41, 43, 45], "exploit": [16, 37], "export": [0, 1, 2, 5, 21, 22, 23, 26, 42, 44], "expos": [5, 6, 26, 27, 43, 45], "express": [0, 8, 13, 21, 29, 34, 42, 44], "ext": [5, 26], "extend": [5, 11, 26, 32], "extend_path": [3, 24], "extens": [1, 6, 7, 8, 9, 10, 11, 14, 15, 16, 22, 27, 28, 29, 30, 31, 32, 35, 36, 37], "extern": [1, 2, 5, 6, 7, 11, 12, 22, 23, 26, 27, 28, 32, 33, 43, 45], "extra": [1, 5, 6, 10, 22, 26, 27, 31], "extra_inc_dir": [2, 23], "extra_opt": [42, 44], "extran": [5, 26], "extras_requir": [1, 5, 22, 26], "extrem": [3, 5, 6, 24, 26, 27], "ez_setup": [5, 26], "f": [2, 9, 16, 23, 30, 37], "f90_interfac": [2, 23], "face": [12, 33, 43, 45], "facil": [6, 27], "facilit": [5, 9, 18, 26, 30, 39], "fact": [43, 45], "fail": [0, 1, 2, 5, 8, 9, 11, 12, 16, 19, 21, 22, 23, 26, 29, 30, 32, 33, 37, 40, 43, 45], "failur": [1, 5, 10, 11, 12, 22, 26, 31, 32, 33], "fairli": [2, 15, 23, 36, 42, 44], "fall": [6, 16, 27, 37, 43, 45], "fallback": [6, 20, 27, 41], "fals": [0, 2, 5, 8, 12, 15, 16, 19, 21, 23, 26, 29, 33, 36, 37, 40], "far": [3, 12, 24, 33, 42, 44], "fastdl": [2, 23], "faster": [19, 20, 40, 41], "fatal": [19, 40, 43, 45], "fdl": [0, 21, 42, 44], "feasibl": [4, 11, 15, 25, 32, 36], "featur": [0, 4, 5, 6, 7, 8, 11, 12, 13, 19, 20, 21, 25, 26, 27, 28, 29, 32, 33, 34, 40, 41, 42, 43, 44, 45], "februari": [13, 34], "feel": [5, 15, 26, 36], "fetch": [5, 10, 12, 26, 31, 33], "few": [2, 4, 6, 12, 19, 23, 25, 27, 33, 40, 43, 45], "fewest": [12, 33], "fi": [0, 2, 4, 5, 8, 12, 14, 21, 23, 25, 26, 29, 33, 35, 42, 44], "file": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 39, 42, 44], "filenam": [4, 5, 25, 26], "filesdir": [2, 23], "filetyp": [15, 36], "fill": [17, 38], "filterwarn": [19, 40], "final": [1, 2, 4, 5, 9, 11, 13, 16, 22, 23, 25, 26, 30, 32, 34, 37, 42, 43, 44, 45], "finalize_opt": [5, 26], "find": [0, 2, 3, 4, 6, 14, 15, 20, 21, 23, 24, 25, 27, 35, 36, 41, 43, 45], "find_packag": [20, 41], "fine": [3, 12, 16, 24, 33, 37], "finish": [19, 40], "fionet": [14, 35], "first": [6, 10, 11, 12, 15, 16, 19, 20, 27, 31, 32, 33, 36, 37, 40, 41, 43, 45], "firstli": [43, 45], "fish": [43, 45], "fit": [6, 27, 43, 45], "fix": [5, 6, 10, 11, 12, 15, 16, 19, 20, 26, 27, 31, 32, 33, 36, 37, 40, 41, 43, 45], "fixm": [5, 26], "fixtur": [10, 12, 31, 33], "flag": [0, 1, 5, 7, 8, 9, 10, 11, 12, 14, 15, 21, 22, 26, 28, 29, 30, 31, 32, 33, 35, 36, 42, 43, 44, 45], "flake8": [19, 40, 43, 45], "flaki": [10, 31, 43, 45], "flask": [15, 18, 36, 39], "flask_babelex": [18, 39], "flex": [8, 29], "flexibl": [5, 7, 26, 28], "flit": [1, 5, 6, 12, 13, 22, 26, 27, 33, 34], "flit_cor": [5, 12, 20, 26, 33, 41], "flit_scm": [10, 31], "float": [16, 37], "fnmatch": [4, 25], "focu": [1, 7, 12, 14, 22, 28, 33, 35], "focus": [12, 33], "folder": [5, 26], "follow": [0, 1, 3, 4, 5, 6, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "followup": [15, 36], "foo": [7, 16, 28, 37], "foo_mock": [16, 37], "footprint": [20, 41], "forc": [4, 5, 6, 8, 9, 12, 13, 19, 25, 26, 27, 29, 30, 33, 34, 40, 43, 45], "fordfrog": [42, 44], "fork": [0, 11, 12, 15, 21, 32, 33, 36, 43, 45], "form": [1, 4, 12, 17, 18, 19, 22, 25, 33, 38, 39], "format": [8, 12, 15, 16, 18, 20, 29, 33, 36, 37, 39, 41], "former": [1, 5, 7, 8, 13, 16, 22, 26, 28, 29, 34, 37, 43, 45], "fortran": [2, 23], "fortran_need": [2, 23], "fortran_standard": [2, 23], "fortranflag": [2, 23], "fortun": [11, 32], "forward": [11, 32], "found": [0, 1, 3, 5, 6, 9, 10, 11, 12, 15, 18, 20, 21, 22, 24, 26, 27, 30, 31, 32, 33, 36, 39, 41, 43, 45], "foundat": [14, 35], "four": [9, 13, 30, 34, 42, 44], "fourth": [13, 34], "fragil": [19, 40], "fragment": [5, 16, 26, 37], "framework": [2, 3, 5, 11, 17, 23, 24, 26, 32, 38], "free": [2, 15, 23, 36, 43], "freedesktop": [0, 21], "freez": [15, 36], "freezegun": [4, 19, 25, 40, 43, 45], "freezer": [19, 40], "frequent": [18, 19, 39, 40, 43, 45], "freshli": [3, 24], "frobnic": [5, 26], "from": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "frozen": [43, 45], "frozendict": [43, 45], "fspath": [43, 45], "ftp": [2, 23, 42, 44], "full": [1, 2, 4, 5, 13, 22, 23, 25, 26, 34, 43, 45], "fullargspec": [16, 37], "fulli": [4, 5, 7, 11, 25, 26, 28, 32], "func": [2, 8, 23, 29], "funcsig": [11, 32], "function": [0, 1, 4, 6, 7, 8, 10, 11, 13, 14, 16, 18, 19, 20, 21, 22, 25, 27, 28, 29, 31, 32, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "further": [1, 19, 22, 40], "furthermor": [0, 2, 5, 21, 23, 26], "futur": [5, 15, 18, 19, 26, 36, 39, 40], "g": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "ga": [14, 35], "gain": [2, 19, 23, 40], "gap": [17, 38], "gaupol": [8, 29], "gc": [11, 32], "gemato": [15, 36], "gener": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 40, 41, 42, 43, 44, 45], "gentoo": [0, 1, 2, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "get": [0, 5, 6, 12, 13, 18, 19, 21, 26, 27, 33, 34, 39, 40, 43, 45], "get_event_loop": [19, 40], "get_libdir": [2, 8, 23, 29], "get_path": [16, 37], "get_python_inc": [16, 37], "get_python_lib": [16, 37], "get_udevdir": [2, 8, 23, 29], "getar": [2, 23], "getcc": [2, 9, 23, 30], "getcxx": [2, 23], "getfc": [2, 23], "getfullargspec": [16, 37], "getranlib": [2, 23], "getter": [9, 13, 16, 30, 34, 37], "gettext": [8, 29], "gfx": [2, 23], "gh": [5, 26, 43, 45], "gi": [14, 35], "git": [5, 12, 26, 33, 43, 45], "github": [0, 2, 4, 5, 6, 8, 12, 14, 16, 17, 18, 21, 23, 25, 26, 27, 29, 33, 35, 37, 38, 39, 42, 43, 44, 45], "github3": [15, 36], "gitlab": [2, 8, 23, 29], "give": [42, 44], "given": [13, 34], "glib": [2, 23], "global": [0, 1, 5, 8, 13, 14, 19, 21, 22, 26, 29, 34, 35, 40, 42, 43, 44, 45], "gna": [2, 23], "gnome": [0, 4, 14, 21, 25, 35], "gnome2": [0, 4, 14, 21, 25, 35], "gnome2_src_configur": [14, 35], "gnome2_src_instal": [14, 35], "gnome2_src_prepar": [14, 35], "gnu": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "go": [1, 2, 8, 17, 18, 19, 22, 23, 29, 38, 39, 40], "goal": [8, 12, 29, 33, 43], "gobject": [0, 21], "goe": [12, 33, 43], "goocanva": [14, 35], "good": [3, 5, 11, 15, 17, 19, 24, 32, 36, 38, 40, 43, 45], "got": [10, 13, 31, 34], "gp": [2, 8, 23, 29], "gpep517": [5, 18, 20, 26, 39, 41], "gpl": [0, 2, 4, 8, 14, 21, 23, 25, 29, 35, 42, 44], "gpsd": [2, 8, 23, 29], "gpsd_group": [2, 8, 23, 29], "gpsd_user": [2, 8, 23, 29], "gpyutil": [12, 15, 33, 36], "grab": [13, 20, 34, 41], "grace": [2, 23], "gracefulli": [1, 4, 8, 22, 25, 29], "graph": [7, 11, 12, 28, 32, 33], "great": [11, 32], "greater": [5, 7, 26, 28], "greenlet": [10, 19, 31, 40], "grep": [5, 26], "gross": [13, 34], "group": [1, 2, 6, 13, 15, 19, 22, 23, 27, 34, 36, 40], "gtk": [14, 35], "gtk2": [42, 44], "guarante": [5, 6, 10, 18, 26, 27, 31, 39], "guess": [43, 45], "gui_script": [6, 27], "guid": [1, 3, 5, 16, 17, 20, 22, 24, 26, 37, 38, 41], "gz": [0, 2, 4, 5, 6, 8, 14, 18, 21, 23, 25, 26, 27, 29, 35, 39, 42, 43, 44, 45], "g\u00f3rny": [10, 31], "h": [8, 9, 29, 30, 42, 44], "ha": [2, 3, 5, 6, 7, 11, 12, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 32, 33, 34, 35, 36, 37, 39, 40, 41, 43, 45], "hack": [5, 6, 7, 13, 26, 27, 28, 34], "had": [2, 23], "hand": [11, 13, 32, 34], "handl": [1, 4, 5, 6, 8, 13, 14, 15, 22, 25, 26, 27, 29, 34, 35, 36, 43, 45], "handler": [5, 26], "hang": [8, 10, 29, 31], "happen": [2, 3, 4, 6, 7, 8, 11, 23, 24, 25, 27, 28, 29, 32, 42, 43, 44, 45], "hard": [5, 8, 12, 26, 29, 33], "hardcod": [1, 12, 19, 22, 33, 40], "harder": [8, 15, 29, 36], "hardest": [0, 21], "hardwar": [11, 19, 32, 40], "has_vers": [0, 4, 12, 21, 25, 33], "hash": [18, 39], "hashtabl": [5, 26], "hatch": [10, 31], "hatchl": [5, 26], "have": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "header": [1, 9, 22, 30], "heavi": [6, 27], "help": [0, 15, 17, 19, 21, 36, 38, 40, 43, 45], "helper": [4, 5, 7, 10, 14, 25, 26, 28, 31, 35, 42, 43, 44, 45], "henc": [2, 5, 14, 23, 26, 35], "hepforg": [42, 44], "here": [6, 8, 14, 27, 29, 35, 42, 44], "hexvers": [11, 32, 43, 45], "high": [2, 4, 11, 12, 15, 19, 23, 25, 32, 33, 36, 40, 42, 44], "highlight": [0, 16, 21, 37, 42, 44], "hint": [12, 33, 43, 45], "histor": [3, 6, 11, 13, 16, 18, 20, 24, 27, 32, 34, 37, 39, 41, 43, 45], "histori": [15, 36], "hit": [16, 37], "hold": [11, 16, 32, 37], "home": [6, 12, 13, 27, 33, 34], "homepag": [0, 2, 4, 5, 6, 8, 14, 15, 21, 23, 25, 26, 27, 29, 35, 36, 42, 43, 44, 45], "horrend": [43, 45], "host": [0, 21], "hous": [11, 32], "how": [43, 45], "howev": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45], "hppa": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "html": [0, 5, 8, 20, 21, 26, 29, 41, 43, 45], "http": [0, 2, 4, 5, 6, 8, 9, 12, 14, 16, 18, 20, 21, 23, 25, 26, 27, 29, 30, 33, 35, 37, 39, 41, 42, 43, 44, 45], "httpbin": [8, 19, 29, 40], "httpcore": [15, 36], "httpx": [15, 36], "hukkin": [5, 26], "human": [8, 29], "humanfriendli": [5, 26], "hybrid": [5, 10, 26, 31], "hyphen": [15, 36], "hypothesi": [43, 45], "hz1jw": [42, 44], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44], "i18n": [14, 35], "ia64": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "id": [15, 36], "idea": [5, 15, 19, 36, 43, 45], "ideal": [11, 15, 32, 36, 43, 45], "ident": [20, 41], "identifi": [1, 22], "idepend": [0, 21], "idna": [8, 29], "ignor": [3, 4, 5, 8, 15, 19, 24, 25, 26, 29, 36, 40, 43, 45], "illustr": [15, 36], "imag": [5, 9, 20, 26, 30, 41], "imagin": [8, 29], "immedi": [4, 5, 12, 19, 25, 26, 33, 40, 42, 44], "impact": [16, 20, 37, 41], "impl": [1, 5, 10, 13, 22, 26, 31, 34], "implement": [0, 1, 3, 4, 5, 6, 7, 10, 14, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 31, 35, 37, 38, 40, 41, 42, 43, 44, 45], "impli": [2, 9, 11, 23, 30, 32], "implic": [5, 26], "implicit": [14, 20, 35, 41, 43, 45], "implicitli": [0, 3, 5, 8, 12, 19, 20, 21, 24, 26, 29, 33, 40, 41, 42, 43, 44, 45], "import": [0, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 39, 40], "import_modul": [43, 45], "import_path": [43, 45], "importerror": [5, 6, 10, 11, 16, 26, 27, 31, 32, 37], "importlib": [6, 11, 27, 32, 43, 45], "importlib_metadata": [4, 6, 15, 25, 27, 36, 43, 45], "importmod": [43, 45], "importpathmismatcherror": [10, 31], "improp": [17, 38], "improv": [9, 10, 11, 17, 30, 31, 32, 38], "in1": [16, 37], "in2": [16, 37], "incdir": [8, 29], "includ": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "incompat": [5, 6, 11, 16, 19, 26, 27, 32, 37, 40, 43, 45], "incompatibilit": [16, 37], "incomplet": [5, 26], "inconsist": [11, 15, 32, 36, 43, 45], "inconveni": [18, 39], "incorrect": [5, 6, 20, 26, 27, 41], "increas": [19, 40], "increment": [11, 32], "inde": [13, 34], "independ": [2, 4, 5, 6, 7, 14, 23, 25, 26, 27, 28, 35, 42, 44], "index": [5, 10, 26, 31], "indic": [1, 5, 6, 11, 12, 13, 15, 18, 19, 20, 22, 26, 27, 32, 33, 34, 36, 39, 40, 41, 43, 45], "indirect": [5, 26], "individu": [2, 5, 11, 19, 23, 26, 32, 40], "infer_vers": [5, 26], "inflect": [5, 26], "inflector": [5, 26], "info": [0, 5, 6, 19, 21, 26, 27, 40], "inform": [1, 3, 6, 10, 13, 16, 18, 20, 22, 24, 27, 31, 34, 37, 39, 41, 43, 45], "inherit": [0, 1, 2, 4, 5, 6, 7, 8, 9, 13, 14, 16, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 35, 37, 39, 42, 43, 44, 45], "ini": [1, 5, 19, 22, 26, 40, 43, 45], "init": [5, 26], "initi": [11, 32, 43, 45], "inject": [3, 24, 42, 43, 44, 45], "inlin": [2, 7, 14, 18, 23, 28, 35, 39], "inplac": [6, 27], "input": [16, 37], "insensit": [15, 36], "insert": [16, 37], "insid": [0, 1, 3, 5, 6, 9, 14, 18, 21, 22, 24, 26, 27, 30, 35, 39, 42, 43, 44, 45], "insinto": [9, 30], "insist": [16, 37], "inspect": [5, 26], "instabl": [19, 40], "instal": [0, 1, 3, 4, 7, 8, 10, 11, 12, 13, 16, 19, 21, 22, 24, 25, 28, 29, 31, 32, 33, 34, 37, 40], "install_requir": [1, 3, 5, 6, 22, 24, 26, 27], "instanc": [13, 16, 18, 34, 37, 39], "instead": [2, 3, 5, 6, 7, 8, 9, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "int": [16, 37], "intact": [5, 26], "integr": [8, 9, 10, 11, 29, 30, 31, 32], "intend": [16, 19, 20, 37, 40, 41, 43, 45], "intent": [19, 40], "interact": [11, 32], "interest": [6, 8, 27, 29, 43, 45], "interfac": [3, 6, 11, 15, 16, 24, 27, 32, 36, 37], "intern": [10, 31], "internet": [5, 10, 19, 26, 31, 40], "interpret": [0, 1, 2, 5, 6, 7, 9, 10, 13, 14, 15, 16, 19, 20, 21, 22, 23, 26, 27, 28, 30, 31, 34, 35, 36, 37, 40, 41, 42, 44], "interrupt": [19, 40], "interspers": [6, 20, 27, 41], "interv": [5, 26], "intro": [8, 29], "introduc": [5, 11, 26, 32], "introspect": [0, 21], "invalid": [0, 21], "investig": [8, 29], "invoc": [0, 5, 20, 21, 26, 41], "invok": [5, 26, 43, 45], "involv": [7, 8, 13, 28, 29, 34], "io": [2, 4, 5, 8, 14, 23, 25, 26, 29, 35, 42, 44], "ipaddress": [11, 32], "ironpython": [11, 32], "irrelev": [43, 45], "isn": [5, 26], "iso": [8, 29], "isol": [20, 41], "isort": [43, 45], "issu": [5, 6, 13, 15, 16, 19, 26, 27, 34, 36, 37, 40, 43, 45], "item": [43, 45], "its": [0, 1, 2, 5, 6, 7, 8, 11, 12, 15, 16, 18, 19, 21, 22, 23, 26, 27, 28, 29, 32, 33, 36, 37, 39, 40, 43, 45], "itself": [5, 6, 8, 9, 12, 15, 19, 26, 27, 29, 30, 33, 36, 40], "ius": [0, 2, 4, 5, 8, 14, 21, 23, 25, 26, 29, 35, 42, 43, 44, 45], "j1": [5, 26], "januari": [13, 34], "jaraco": [3, 5, 12, 19, 24, 26, 33, 40], "java": [11, 32], "javascript": [11, 32], "jazzband": [5, 26], "job": [2, 5, 23, 26], "jq": [5, 26], "json": [5, 26], "juli": [11, 32], "june": [11, 32], "jupyt": [5, 26], "jupyter_packag": [5, 26], "just": [1, 6, 11, 13, 22, 27, 32, 34, 43, 45], "justifi": [19, 40], "jython": [11, 32], "k6": [16, 37], "k7": [16, 37], "k8": [16, 37], "keep": [5, 15, 17, 26, 36, 38], "kei": [1, 5, 16, 19, 20, 22, 26, 37, 40, 41, 42, 44], "kernel": [14, 35], "kernel_linux": [8, 29], "keyword": [0, 2, 4, 5, 6, 8, 10, 14, 16, 21, 23, 25, 26, 27, 29, 31, 35, 37, 42, 43, 44, 45], "kind": [1, 3, 7, 9, 11, 22, 24, 28, 30, 32, 43, 45], "kinet": [2, 23], "kitti": [9, 30], "know": [13, 16, 34, 37, 43, 45], "known": [6, 16, 19, 27, 37, 40, 43, 45], "kp3": [16, 37], "kp4": [16, 37], "kp5": [16, 37], "kvm": [14, 35], "kwarg": [16, 37], "kwonlyarg": [16, 37], "kwonlydefault": [16, 37], "la": [14, 35], "lack": [3, 9, 24, 30, 43, 45], "lambda": [43, 45], "land": [9, 30], "lang": [2, 8, 11, 12, 23, 29, 32, 33, 42, 44], "languag": [1, 2, 5, 11, 15, 22, 23, 26, 32, 36], "larg": [5, 12, 15, 19, 20, 26, 33, 36, 40, 41], "last": [3, 5, 16, 24, 26, 37], "late": [11, 32], "later": [11, 32], "latest": [5, 15, 26, 36], "latter": [2, 5, 7, 8, 13, 15, 16, 23, 26, 28, 29, 34, 36, 37, 43, 45], "layer": [5, 14, 26, 35], "layout": [3, 6, 13, 24, 27, 34, 43, 45], "ldap": [2, 23], "ldb": [2, 23], "ldflag": [2, 5, 23, 26], "lead": [43, 45], "leak": [43, 45], "learn": [3, 24], "least": [0, 5, 8, 15, 20, 21, 26, 29, 36, 41, 43, 45], "leav": [6, 27], "left": [18, 39], "leftov": [6, 27], "legaci": [7, 10, 13, 16, 20, 28, 31, 34, 37, 41, 43, 45], "legal": [5, 26], "length": [16, 37], "lenient": [12, 33], "less": [3, 15, 24, 36, 43, 45], "let": [2, 4, 8, 16, 23, 25, 29, 37, 42, 44], "letter": [15, 18, 36, 39], "level": [3, 5, 9, 10, 11, 24, 30, 31, 32, 43, 45], "levenshtein": [8, 29], "lgpl": [0, 2, 14, 21, 23, 35, 42, 43, 44, 45], "lib": [2, 3, 5, 7, 9, 16, 19, 20, 23, 24, 26, 28, 30, 37, 40, 41, 43, 45], "lib64": [9, 30], "libboost_python": [7, 28], "libbsd": [2, 23], "libcangji": [14, 35], "libdir": [2, 8, 9, 23, 29, 30], "libdirnam": [2, 23], "libfmt": [2, 23], "libfoo": [5, 26], "libimag": [9, 30], "libpcap": [2, 23], "libpcr": [2, 23], "libpython": [7, 11, 16, 28, 32, 37], "librari": [0, 1, 2, 3, 4, 8, 9, 11, 14, 21, 22, 23, 24, 25, 29, 30, 32, 35, 42, 43, 44, 45], "libsecret": [0, 21], "libtool": [14, 35], "libudev": [2, 23], "libusb": [2, 23], "libx11": [2, 23], "libxslt": [2, 23], "licens": [0, 2, 4, 5, 6, 8, 10, 14, 20, 21, 23, 25, 26, 27, 29, 31, 35, 41, 42, 43, 44, 45], "life": [10, 31], "light": [1, 22], "lightweight": [4, 20, 25, 41], "like": [0, 2, 4, 5, 6, 8, 11, 15, 16, 20, 21, 23, 25, 26, 27, 29, 32, 36, 37, 41, 42, 43, 44, 45], "limit": [6, 12, 15, 17, 19, 27, 33, 36, 38, 40], "line": [0, 3, 5, 13, 15, 16, 19, 21, 24, 26, 34, 36, 37, 40, 42, 43, 44, 45], "link": [5, 7, 9, 16, 26, 28, 30, 37], "linkag": 5, "linker": [5, 9, 26, 30], "linkflag": [2, 23], "linter": [1, 22], "linux": [0, 2, 4, 5, 6, 8, 9, 14, 16, 21, 23, 25, 26, 27, 29, 30, 35, 37, 42, 43, 44, 45], "linux_distribut": [11, 32], "linuxmint": [0, 21], "list": [4, 5, 8, 12, 13, 19, 20, 25, 26, 29, 33, 34, 40, 41, 43, 45], "liter": [0, 4, 21, 25, 42, 44], "littl": [6, 19, 27, 40, 43, 45], "ll": [4, 14, 25, 35], "load": [3, 7, 9, 16, 19, 20, 24, 28, 30, 37, 40, 41, 43, 45], "loadabl": [5, 26], "local": [1, 2, 3, 4, 5, 8, 9, 12, 13, 14, 19, 20, 22, 23, 24, 25, 26, 29, 30, 33, 34, 35, 40, 41, 42, 43, 44, 45], "localize_pydatetim": [5, 26], "locat": [3, 5, 20, 24, 26, 41], "lock": [5, 26], "log": [5, 20, 26, 41], "logic": [5, 6, 12, 26, 27, 33, 43, 45], "login": [43, 45], "lollypop": [4, 25], "long": [5, 11, 12, 26, 32, 33], "longer": [4, 6, 11, 13, 18, 25, 27, 32, 34, 39, 43, 45], "look": [0, 1, 6, 8, 16, 19, 20, 21, 22, 27, 29, 37, 40, 41, 42, 43, 44, 45], "lookup": [43, 45], "lookuperror": [5, 26], "loop": [2, 5, 19, 23, 26, 40], "looponfail": [19, 40], "lot": [11, 15, 32, 36], "low": [19, 40], "lowercas": [15, 18, 36, 39], "lp": [43, 45], "lpython3": [16, 37], "lxml": [8, 29], "lzma": [11, 32], "m": [15, 19, 20, 36, 40, 41, 43, 45], "m68k": [0, 4, 5, 6, 8, 21, 25, 26, 27, 29, 42, 43, 44, 45], "machin": [14, 19, 20, 35, 40, 41], "machineri": [5, 26], "maco": [0, 4, 6, 8, 21, 25, 27, 29, 42, 43, 44, 45], "made": [11, 13, 14, 16, 32, 34, 35, 37, 42, 44], "magicmock": [16, 37], "mai": [1, 3, 4, 5, 6, 8, 11, 12, 13, 15, 16, 18, 19, 22, 24, 25, 26, 27, 29, 32, 33, 34, 36, 37, 39, 40, 43, 45], "mail": [12, 15, 33, 36], "main": [5, 9, 26, 30], "main_event_loop": [19, 40], "maintain": [5, 10, 11, 12, 16, 19, 26, 31, 32, 33, 37, 40], "mainten": [10, 31], "major": [4, 5, 6, 11, 15, 25, 26, 27, 32, 36, 43, 45], "make": [2, 3, 4, 5, 6, 7, 11, 12, 13, 15, 16, 18, 19, 20, 23, 24, 25, 26, 27, 28, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45], "make_wrapp": [2, 9, 23, 30], "makefil": [5, 14, 26, 35], "makeopts_job": [2, 23], "man": [16, 37], "manag": [0, 4, 6, 8, 9, 18, 20, 21, 25, 27, 29, 30, 39, 41, 43, 45], "manbuild": [2, 8, 23, 29], "mani": [2, 5, 8, 12, 14, 15, 16, 20, 23, 26, 29, 33, 35, 36, 37, 41, 43, 45], "manipul": [5, 26, 43, 45], "manpag": [5, 26], "manpow": [15, 36], "manual": [2, 3, 6, 10, 11, 12, 18, 20, 23, 24, 27, 31, 32, 33, 39, 41], "map": [2, 5, 6, 8, 15, 19, 23, 26, 27, 29, 36, 40], "march": [13, 34], "mark": [11, 15, 19, 32, 36, 40, 43, 45], "marker": [10, 31, 43, 45], "markup": [18, 39], "martinblech": [5, 26], "mask": [4, 11, 12, 15, 25, 32, 33, 36], "masonri": [5, 26], "master": [5, 26, 43, 45], "match": [0, 2, 4, 5, 6, 8, 9, 10, 11, 12, 15, 20, 21, 23, 25, 26, 27, 29, 30, 31, 32, 33, 36, 41, 42, 44], "matplotlib": [2, 5, 23, 26, 42, 44], "maturin": [5, 26], "max_atom": [2, 23], "maximum": [1, 5, 22, 26], "mayb": [43, 45], "mayhem": [43, 45], "md": [2, 20, 23, 41], "me": [16, 37], "mean": [0, 1, 2, 5, 7, 8, 11, 15, 16, 18, 19, 21, 22, 23, 26, 28, 29, 32, 36, 37, 39, 40, 42, 43, 44, 45], "meaning": [6, 27], "meaningfulli": [1, 22], "meant": [1, 13, 16, 20, 22, 34, 37, 41], "mechan": [5, 7, 11, 26, 28, 32], "media": [0, 2, 8, 21, 23, 29], "meet": [7, 28], "member": [15, 36], "mercuri": [15, 36], "mere": [5, 7, 26, 28], "merg": [4, 5, 25, 26], "meson": [0, 4, 5, 7, 10, 15, 21, 25, 26, 28, 31, 36], "meson_src_compil": [5, 26], "meson_src_configur": [5, 26], "meson_src_instal": [5, 26], "meson_src_test": [5, 26], "mesonpi": [5, 26], "messag": [1, 5, 19, 22, 26, 40, 43, 45], "met": [16, 37], "metadata": [1, 5, 6, 14, 15, 22, 26, 27, 35, 36, 42, 44], "method": [3, 5, 11, 13, 19, 20, 24, 26, 32, 34, 40, 41, 43, 45], "mgorni": [12, 33], "micha\u0142": [10, 31], "microcontrol": [11, 32], "micropython": [11, 32], "might": [19, 40], "migrat": [10, 18, 31, 39], "mind": [15, 36], "minfx": [2, 23], "minim": [11, 15, 16, 32, 36, 37, 43, 45], "minimum": [0, 15, 21, 36, 42, 44], "minor": [11, 32, 43, 45], "mint": [0, 21], "minu": [18, 39], "minut": [19, 40], "mip": [0, 2, 4, 5, 6, 8, 21, 23, 25, 26, 27, 29, 42, 43, 44, 45], "mirror": [2, 4, 5, 6, 8, 14, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "misbehav": [6, 27], "misc": [2, 8, 23, 29], "miscompil": [5, 26], "mislead": [43, 45], "miss": [3, 4, 5, 6, 9, 10, 11, 12, 13, 15, 17, 18, 20, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 38, 39, 41], "mistak": [15, 20, 36, 41], "mit": [5, 6, 26, 27, 43, 45], "mkdir": [12, 33], "mock": [0, 4, 8, 11, 12, 16, 19, 21, 25, 29, 32, 33, 37, 40, 43, 45], "mocker": [19, 40], "mod": [43, 45], "mode": [1, 6, 7, 10, 13, 16, 20, 22, 27, 28, 31, 34, 37, 41], "model": [7, 28], "modern": [1, 4, 5, 6, 11, 12, 16, 19, 22, 25, 26, 27, 32, 33, 37, 40, 43, 45], "modif": [5, 26], "modifi": [5, 6, 11, 15, 20, 26, 27, 32, 36, 41, 43, 45], "modul": [1, 3, 4, 5, 6, 7, 8, 10, 11, 14, 15, 16, 19, 22, 24, 25, 26, 27, 28, 29, 31, 32, 35, 36, 37, 40, 43, 45], "module_nam": [43, 45], "modulenotfounderror": [3, 24], "modulesdir": [2, 23], "molecular": [2, 23], "molmol": [2, 23], "moment": [5, 11, 13, 15, 26, 32, 34, 36], "mongo": [2, 23], "mongodb": [2, 4, 23, 25], "monitor": [10, 20, 31, 41], "more": [0, 1, 3, 4, 5, 7, 9, 11, 12, 13, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 28, 30, 32, 33, 34, 36, 37, 39, 40, 41, 42, 44], "most": [0, 3, 5, 6, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "mostli": [16, 17, 37, 38], "move": [0, 4, 5, 12, 21, 25, 26, 33], "mozilla": [43, 45], "mpi": [5, 26], "mrzechonek": [2, 23], "much": [2, 5, 20, 23, 26, 41, 43, 45], "multi": [1, 5, 10, 13, 22, 26, 31, 34, 42, 44], "multibuild": [14, 35], "multipl": [1, 3, 4, 5, 7, 10, 14, 15, 16, 17, 19, 20, 22, 24, 25, 26, 28, 31, 35, 36, 37, 38, 40, 41, 43, 45], "multipli": [19, 40], "music": [4, 25], "must": [0, 1, 2, 3, 5, 6, 7, 8, 11, 15, 16, 19, 21, 22, 23, 24, 26, 27, 28, 29, 32, 36, 37, 40, 42, 43, 44, 45], "my_p": [2, 23], "my_pn": [9, 30], "mycmakearg": [9, 13, 30, 34, 42, 44], "myconf": [2, 8, 23, 29], "mydistutilsarg": [13, 34], "myesconsarg": [2, 8, 23, 29], "myself": [43, 45], "mysql": [4, 14, 25, 35], "n": [2, 16, 23, 37], "name": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 16, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 35, 37, 43, 45], "namespac": [10, 19, 31, 40], "namespace_packag": [3, 24], "nativ": [11, 32], "natur": [2, 3, 5, 8, 15, 23, 24, 26, 29, 36], "nautilu": [0, 21], "ncurs": [2, 14, 23, 35], "nd": [2, 23], "nears": [11, 32], "necess": [19, 40], "necessari": [0, 2, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 42, 43, 44, 45], "need": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "nemo": [0, 21], "net": [2, 8, 11, 14, 15, 23, 29, 32, 35, 36, 42, 44], "netloc": [16, 37], "network": [6, 19, 27, 40, 43, 45], "never": [6, 11, 13, 16, 27, 32, 34, 37], "new": [2, 5, 6, 9, 10, 11, 13, 16, 19, 23, 26, 27, 30, 31, 32, 34, 37, 40, 43, 45], "newer": [3, 4, 5, 6, 11, 12, 15, 16, 20, 24, 25, 26, 27, 32, 33, 36, 37, 41], "newli": [15, 36], "newlin": [16, 37], "next": [11, 12, 15, 32, 33, 36], "ninja": [8, 15, 29, 36], "nmr": [2, 23], "no_network": [43, 45], "no_waf_libdir": [2, 23], "node": [15, 36], "nodej": [5, 26], "non": [1, 6, 7, 9, 12, 14, 16, 18, 19, 22, 27, 28, 30, 33, 35, 37, 39, 40, 43, 45], "none": [2, 5, 6, 16, 18, 23, 26, 27, 37, 39], "nonfat": [43, 45], "nongnu": [2, 8, 23, 29], "nor": [11, 17, 20, 32, 38, 41], "normal": [0, 3, 5, 8, 9, 14, 15, 16, 18, 19, 20, 21, 24, 26, 29, 30, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "nose": [25, 43], "nosetest": 43, "nostrip": [2, 8, 23, 29], "notabl": [5, 15, 16, 18, 26, 36, 37, 39], "note": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "notic": [19, 20, 40, 41], "novemb": [16, 37], "now": [3, 5, 6, 8, 13, 14, 24, 26, 27, 29, 34, 35, 43, 45], "nowadai": [9, 12, 13, 30, 33, 34], "noxfil": [1, 22], "null": [43, 45], "number": [5, 7, 12, 15, 18, 19, 20, 26, 28, 33, 36, 39, 40, 41, 43, 45], "numdifftool": [2, 23], "numpi": [1, 2, 22, 23, 43, 45], "nurl": [16, 37], "o": [2, 5, 19, 20, 23, 26, 40, 41], "o0": [43, 45], "object": [2, 11, 16, 23, 32, 37, 42, 44], "obligatori": [12, 15, 33, 36], "obsolesc": [12, 33], "obsolet": [11, 13, 32, 34], "obviou": [1, 19, 22, 40, 43, 45], "ocassion": [9, 30], "occasion": [11, 32], "occur": [7, 11, 19, 28, 32, 40], "offset": [9, 30], "often": [1, 5, 12, 19, 22, 26, 33, 40, 43, 45], "old": [2, 4, 5, 6, 8, 10, 11, 12, 16, 23, 25, 26, 27, 29, 31, 32, 33, 37, 43, 45], "older": [1, 11, 15, 18, 22, 32, 36, 39], "omit": [5, 15, 16, 26, 36, 37], "ommit": [1, 22], "onc": [0, 5, 8, 11, 12, 20, 21, 26, 29, 32, 33, 41], "one": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 16, 17, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 37, 38, 40, 41, 42, 43, 44, 45], "ones": [12, 33], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "onto": [9, 30], "oo": [20, 41], "op": [5, 26], "opal": [2, 23], "open": [2, 16, 23, 37], "openapi": [15, 36], "openbabel": [2, 23], "opendx": [2, 23], "openldap": [2, 23], "openvpn": [9, 30], "oper": [5, 11, 17, 18, 26, 32, 38, 39], "opml": [15, 36], "opposit": [8, 11, 13, 29, 32, 34], "opt": [19, 20, 40, 41], "optfeatur": [1, 22], "optim": [20, 41], "optimize_flag": [2, 23], "option": [0, 1, 3, 6, 8, 10, 13, 15, 18, 19, 20, 21, 22, 24, 27, 29, 31, 34, 36, 39, 40, 41, 42, 43, 44, 45], "optional_packag": [2, 23], "order": [0, 1, 2, 4, 5, 7, 9, 12, 13, 14, 15, 21, 22, 23, 25, 26, 28, 30, 33, 34, 35, 36, 42, 43, 44, 45], "org": [0, 2, 4, 5, 6, 8, 9, 12, 14, 18, 20, 21, 23, 25, 26, 27, 29, 30, 33, 35, 39, 41, 42, 43, 44, 45], "organ": [3, 24], "orient": [2, 16, 23, 37], "origin": [5, 9, 11, 12, 16, 26, 30, 32, 33, 37, 43, 45], "oslo": [15, 36], "other": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 33, 34, 35, 36, 38, 39, 41, 42, 43, 44, 45], "otherwis": [0, 6, 7, 8, 9, 19, 21, 27, 28, 29, 30, 40], "ought": [16, 37], "our": [6, 27, 43, 45], "out": [8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40], "outer": [4, 25], "outofboundstimedelta": [5, 26], "output": [4, 5, 6, 9, 16, 20, 25, 26, 27, 30, 37, 41, 43, 45], "outsid": [14, 35, 42, 44], "over": [5, 7, 11, 12, 19, 26, 28, 32, 33, 40, 42, 43, 44, 45], "overlap": [5, 26], "overrid": [5, 9, 14, 18, 19, 26, 30, 35, 39, 40, 43, 45], "overriden": [18, 39], "overview": [10, 31], "overwritten": [18, 39], "own": [5, 26, 43, 45], "p": [0, 2, 4, 5, 6, 8, 14, 18, 19, 21, 23, 25, 26, 27, 29, 35, 39, 40, 42, 43, 44, 45], "p1": [16, 37], "p2": [16, 37], "pace": [11, 32], "packag": [0, 8, 9, 10, 11, 13, 17, 19, 21, 29, 30, 31, 32, 34, 38, 40], "page": [10, 16, 17, 31, 37, 38], "pair": [20, 41], "panda": [5, 26], "pandas_datetime_to_datetimestruct": [5, 26], "parallel": [10, 31], "param": [16, 19, 37, 40], "paramet": [8, 16, 20, 29, 37, 41, 43, 45], "parametr": [19, 40], "paremet": [5, 26], "parent": [3, 9, 24, 30], "pars": [16, 37], "parsed_vers": [5, 26], "parseresult": [16, 37], "part": [2, 3, 4, 5, 8, 9, 12, 13, 14, 15, 18, 19, 23, 24, 25, 26, 29, 30, 33, 34, 35, 36, 39, 40, 43, 45], "parti": [5, 26], "partial": [4, 5, 9, 10, 13, 25, 26, 30, 31, 34], "particular": [0, 1, 4, 5, 6, 11, 15, 18, 21, 22, 25, 26, 27, 32, 36, 39, 43, 45], "particularli": [0, 5, 6, 7, 11, 13, 15, 19, 21, 26, 27, 28, 32, 34, 36, 40, 43, 45], "pass": [0, 6, 8, 9, 10, 12, 13, 16, 18, 19, 21, 27, 29, 30, 31, 33, 34, 37, 39, 40, 43, 45], "password": [4, 25], "past": [19, 40], "patch": [2, 4, 5, 6, 8, 11, 12, 16, 18, 20, 23, 25, 26, 27, 29, 32, 33, 37, 39, 41, 43, 45], "patchelf": [15, 36], "path": [1, 3, 5, 6, 9, 10, 12, 13, 16, 18, 20, 22, 24, 26, 27, 30, 31, 33, 34, 37, 39, 41, 43, 45], "pathlib": [19, 40, 43, 45], "pattern": [4, 12, 13, 25, 33, 34, 42, 44], "pax": [8, 29], "pbr": [5, 6, 26, 27], "pch": [2, 23], "pcre": [2, 23], "pdepend": [0, 2, 8, 12, 21, 23, 29, 33], "pdm": [10, 13, 31, 34], "pdm_build_scm_vers": [5, 26], "pend": [15, 36], "peopl": [17, 38], "pep": [1, 3, 6, 7, 10, 12, 15, 16, 18, 22, 24, 27, 28, 31, 33, 36, 37, 39], "pep517": [5, 20, 26, 41], "pep8": [43, 45], "per": [3, 20, 24, 41], "perform": [0, 2, 5, 6, 11, 12, 14, 18, 19, 20, 21, 23, 26, 27, 32, 33, 35, 39, 40, 41, 42, 43, 44, 45], "period": [13, 15, 34, 36], "permiss": [20, 41], "permit": [3, 4, 5, 6, 11, 15, 19, 24, 25, 26, 27, 32, 36, 43, 45], "pexpect": [0, 21, 43, 45], "pf": [5, 26], "phase": [0, 1, 3, 6, 7, 8, 9, 10, 13, 14, 15, 20, 21, 22, 24, 27, 28, 29, 30, 31, 34, 35, 36, 41, 42, 44], "physic": [5, 26, 42, 44], "pick": [5, 12, 26, 33], "pillow": [5, 26], "pin": [15, 36], "pip": [5, 12, 26, 33, 43, 45], "pip3": [15, 36], "pipelin": [2, 23, 43, 45], "pkg": [9, 30], "pkg_config": [2, 23], "pkg_config_path": [16, 37], "pkg_postinst": [1, 5, 22, 26], "pkg_resourc": [3, 6, 24, 27], "pkg_setup": [0, 1, 2, 8, 21, 22, 23, 29, 42, 44], "pkgcheck": [13, 15, 34, 36], "pkgconfig": [0, 2, 8, 14, 21, 23, 29, 35], "pkgutil": [3, 24], "place": [1, 6, 11, 12, 18, 20, 22, 27, 32, 33, 39, 41], "placehold": [13, 34], "plain": [2, 5, 6, 13, 23, 26, 27, 34], "plan": [11, 32], "platform": [11, 16, 18, 32, 37, 39, 43, 45], "platformtag": [18, 39], "platinclud": [16, 37], "platlib": [16, 37], "platstdlib": [16, 37], "player": [0, 4, 21, 25], "pleas": [5, 6, 8, 9, 12, 15, 16, 18, 19, 20, 26, 27, 29, 30, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45], "plot": [42, 44], "plu": [0, 21, 42, 44], "pluggi": [43, 45], "plugin": [1, 3, 5, 6, 8, 10, 22, 24, 26, 27, 29, 31, 43, 45], "pm": [6, 27], "pn": [0, 2, 4, 5, 6, 8, 9, 14, 18, 21, 23, 25, 26, 27, 29, 30, 35, 39, 42, 43, 44, 45], "pngcrush": [2, 23], "poetri": [1, 5, 6, 13, 22, 26, 27, 34], "poetry_cor": [20, 41], "point": [1, 5, 11, 13, 15, 22, 26, 32, 34, 36, 43, 45], "pointless": [5, 26], "poisson": [2, 23], "poissonboltzmann": [2, 23], "polib": [0, 21], "polici": [10, 19, 31, 40], "popd": [43, 45], "popt": [2, 23], "popul": [5, 15, 26, 36], "port": [5, 8, 10, 26, 29, 31], "portabl": [3, 24], "portag": [3, 5, 8, 10, 12, 14, 15, 19, 24, 26, 29, 31, 33, 35, 36, 40, 43, 45], "portage_elog_class": [20, 41], "posit": [5, 15, 19, 26, 36, 40], "posixpath": [19, 40], "possibl": [0, 2, 4, 5, 8, 9, 12, 14, 16, 17, 19, 21, 23, 25, 26, 29, 30, 33, 35, 37, 38, 40, 43, 45], "possibli": [5, 6, 27, 43, 45], "post": [6, 13, 15, 18, 27, 34, 36, 39, 43, 45], "postgr": [4, 25], "potenti": [7, 11, 15, 16, 19, 28, 32, 36, 37, 40], "power": [8, 29], "pp": [2, 8, 23, 29], "ppc": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "ppc64": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "pr": [16, 37], "practic": [8, 11, 12, 29, 32, 33], "pre": [43, 45], "prebuilt": [18, 39], "preced": [43, 45], "precis": [8, 9, 29, 30, 43, 45], "precompil": [12, 20, 33, 41], "predat": [18, 39], "predict": [11, 32, 42, 44], "prefac": [10, 31], "prefer": [1, 4, 5, 7, 8, 11, 12, 14, 15, 19, 22, 25, 26, 28, 29, 32, 33, 35, 36, 40, 43, 45], "prefix": [2, 8, 9, 15, 16, 23, 29, 30, 36, 37, 43, 45], "pregener": [5, 26], "prematur": [11, 15, 32, 36], "prepar": [8, 9, 20, 29, 30, 41, 42, 44], "preprocessor": [9, 30], "presenc": [5, 8, 26, 29], "present": [1, 5, 6, 15, 20, 22, 26, 27, 36, 41], "preserv": [6, 11, 15, 16, 27, 32, 36, 37], "presum": [2, 23], "pretti": [16, 37], "prevent": [4, 5, 10, 11, 25, 26, 31, 32, 42, 43, 44, 45], "previou": [1, 5, 12, 13, 16, 19, 22, 26, 33, 34, 37, 40], "previous": [12, 19, 33, 40], "primari": [5, 19, 26, 40, 43, 45], "primarili": [7, 11, 28, 32], "print": [0, 5, 8, 14, 19, 21, 26, 29, 35, 40, 43, 45], "prior": [2, 3, 5, 6, 8, 11, 12, 13, 16, 19, 20, 23, 24, 26, 27, 29, 32, 33, 34, 37, 40, 41, 43, 45], "privat": [13, 34], "proactiv": [15, 19, 36, 40], "probabl": [1, 6, 8, 13, 22, 27, 29, 34, 42, 44], "problem": [1, 3, 4, 5, 6, 8, 12, 15, 16, 17, 19, 20, 22, 24, 25, 26, 27, 29, 33, 36, 37, 38, 40, 41, 43, 45], "problemat": [3, 6, 10, 19, 24, 27, 31, 40], "proce": [12, 33], "process": [3, 5, 7, 12, 16, 20, 24, 26, 28, 33, 37, 41, 42, 44], "produc": [12, 15, 20, 33, 36, 41], "profil": [4, 6, 15, 25, 27, 36], "program": [1, 2, 5, 6, 11, 16, 19, 22, 23, 26, 27, 32, 37, 40, 43, 45], "programm": [0, 15, 21, 36], "progress": [12, 33], "proj": [5, 26], "project": [0, 1, 5, 8, 9, 10, 14, 17, 18, 19, 20, 21, 22, 26, 29, 30, 31, 35, 38, 39, 40, 41, 43, 45], "prolong": [20, 41], "prone": [0, 21], "propag": [42, 44], "proper": [2, 8, 23, 29], "properli": [6, 13, 27, 34], "properti": [43, 45], "protect": [19, 40], "protocol": [0, 2, 21, 23, 42, 44], "prototyp": [16, 37], "provid": [0, 1, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 45], "proxi": [3, 14, 24, 35], "psf": [5, 26], "psql": [14, 35], "psutil": [2, 23], "pth": [3, 24], "pub": [2, 23], "public": [0, 2, 4, 5, 6, 8, 11, 14, 21, 23, 25, 26, 27, 29, 32, 35, 42, 43, 44, 45], "publish": [15, 36], "pull": [4, 25], "pure": [0, 5, 6, 7, 8, 10, 11, 15, 18, 21, 26, 27, 28, 29, 31, 32, 36, 39, 43, 45], "purelib": [16, 37], "purpos": [0, 5, 6, 9, 12, 14, 16, 18, 21, 26, 27, 30, 33, 35, 37, 39, 42, 43, 44, 45], "push": [11, 12, 15, 32, 33, 36], "pushd": [43, 45], "put": [1, 8, 22, 29], "pv": [0, 2, 4, 5, 8, 14, 18, 21, 23, 25, 26, 29, 35, 39, 42, 43, 44, 45], "pwd": [12, 33], "pwman3": [4, 25], "py": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 43, 45], "py2": [2, 8, 18, 23, 29, 39, 43, 45], "py3": [5, 18, 19, 26, 39, 40], "py_input_list": [43, 45], "pyarg": [43, 45], "pybytearray_check": [43, 45], "pyc": [2, 9, 20, 23, 30, 41], "pycargoebuild": [5, 26], "pycodestyl": [43, 45], "pycountri": [8, 29], "pydant": [12, 33], "pydiff": [8, 29], "pyduali": [42, 44], "pyext": [42, 44], "pygit2": [43, 45], "pygobject": [0, 14, 21, 35], "pyinc": [9, 30], "pylib": [9, 30], "pylist_getitem": [43, 45], "pymol": [2, 23], "pymongo": [2, 23], "pynslcd": [9, 30], "pyo": [2, 9, 20, 23, 30, 41], "pyopenssl": [8, 29], "pypa": [6, 27], "pyperclip": [43, 45], "pypi": [4, 5, 6, 8, 10, 11, 13, 25, 26, 27, 29, 31, 32, 34], "pypi_no_norm": [18, 39], "pypi_pn": [18, 39], "pypi_sdist_url": [18, 39], "pypi_wheel_filenam": [18, 39], "pypi_wheel_url": [18, 39], "pyproject": [1, 5, 7, 12, 20, 22, 26, 28, 33, 41, 43, 45], "pyproject2setuppi": [5, 6, 13, 26, 27, 34], "pyproject2toml": [6, 27], "pypy2": [9, 11, 30, 32], "pypy3": [1, 4, 5, 6, 8, 11, 12, 13, 15, 19, 20, 22, 25, 26, 27, 29, 32, 33, 34, 36, 40, 41, 43, 45], "pyqt": [15, 36], "pyqt5": [15, 36], "pyqtwebengin": [15, 36], "pyroot": [5, 26], "pyseri": [5, 26], "pysock": [8, 29], "pysrt": [16, 37], "pytabl": [5, 26], "pytag": [18, 39], "pytest": [0, 4, 5, 8, 10, 12, 15, 18, 21, 25, 26, 29, 31, 33, 36, 39], "pytest_cach": [43, 45], "pytest_disable_plugin_autoload": [19, 40], "pytest_fork": [19, 40], "pytest_plugin": [19, 40], "pytest_pyfunc_cal": [43, 45], "python": [3, 6, 17, 18, 19, 20, 24, 27, 38, 39, 40, 41], "python2": [2, 8, 9, 13, 23, 29, 30, 34, 42, 44], "python2_7": [2, 5, 6, 8, 13, 14, 23, 26, 27, 29, 34, 35, 42, 43, 44, 45], "python2_packag": [2, 23], "python3": [1, 3, 5, 9, 11, 13, 15, 16, 19, 20, 22, 24, 26, 30, 32, 34, 36, 37, 40, 41, 43, 45], "python3_": [0, 1, 2, 4, 5, 6, 8, 12, 21, 22, 23, 25, 26, 27, 29, 33, 42, 43, 44, 45], "python3_11": [3, 12, 24, 33], "python3_5": [8, 29], "python3_6": [0, 2, 4, 8, 14, 21, 23, 25, 29, 35], "python3_7": [4, 8, 25, 29], "python3_8": [3, 24], "python3_cmd": [2, 23], "python3_packag": [2, 23], "python_": [5, 8, 26, 29], "python_cflag": [16, 37], "python_check_dep": [0, 2, 8, 21, 23, 29], "python_compat": [0, 2, 4, 5, 6, 8, 10, 11, 12, 14, 15, 21, 23, 25, 26, 27, 29, 31, 32, 33, 35, 36, 42, 43, 44, 45], "python_compil": [3, 24], "python_compile_al": [5, 8, 26, 29], "python_configur": [2, 23], "python_configure_al": [5, 26], "python_copy_sourc": [2, 14, 23, 35], "python_dep": [0, 2, 4, 5, 8, 10, 14, 21, 23, 25, 26, 29, 31, 35, 42, 44], "python_doex": [9, 30], "python_dohead": [9, 30], "python_domodul": [2, 5, 9, 12, 14, 23, 26, 30, 33, 35, 42, 44], "python_doscript": [9, 14, 30, 35, 42, 44], "python_export": [13, 34], "python_fix_shebang": [9, 30], "python_foreach_impl": [1, 2, 8, 14, 22, 23, 29, 35], "python_gen": [13, 34], "python_gen_any_dep": [0, 2, 8, 21, 23, 29], "python_gen_cond_dep": [2, 4, 5, 8, 12, 13, 23, 25, 26, 29, 33, 34, 42, 43, 44, 45], "python_gen_impl_dep": [4, 25], "python_gen_usedep": [13, 34], "python_gen_useflag": [8, 29], "python_get": [13, 34], "python_get_cflag": [9, 30], "python_get_includedir": [8, 9, 13, 29, 30, 34], "python_get_lib": [9, 30], "python_get_library_path": [9, 13, 30, 34], "python_get_python_config": [9, 30], "python_get_scriptdir": [9, 30], "python_get_sitedir": [2, 3, 8, 9, 23, 24, 29, 30, 43, 45], "python_has_vers": [0, 2, 8, 21, 23, 29], "python_includedir": [13, 34], "python_instal": [2, 14, 23, 35], "python_install_al": [5, 26], "python_is_python3": [8, 13, 29, 34], "python_lib": [16, 37], "python_libpath": [13, 34], "python_moduleinto": [2, 5, 9, 14, 23, 26, 30, 35], "python_multi_usedep": [13, 34], "python_newex": [9, 30], "python_newscript": [5, 9, 26, 30], "python_optim": [2, 8, 9, 20, 23, 29, 30, 41], "python_pkg_dep": [12, 33], "python_prepare_al": [5, 19, 26, 40], "python_req_us": [2, 4, 5, 6, 8, 14, 23, 25, 26, 27, 29, 35, 42, 44], "python_requir": [1, 22], "python_required_us": [2, 4, 5, 8, 10, 14, 23, 25, 26, 29, 31, 35, 42, 44], "python_scriptinto": [9, 30], "python_setup": [0, 1, 2, 10, 13, 14, 21, 22, 23, 31, 34, 35, 42, 44], "python_single_target": [7, 11, 12, 28, 32, 33], "python_single_usedep": [4, 5, 13, 25, 26, 34, 42, 44], "python_target": [5, 7, 8, 11, 12, 26, 28, 29, 32, 33], "python_test": [4, 6, 8, 9, 12, 19, 25, 27, 29, 30, 33, 40, 43, 45], "python_test_al": [5, 26], "python_usedep": [0, 2, 4, 5, 8, 10, 12, 14, 15, 19, 21, 23, 25, 26, 29, 31, 33, 35, 36, 40, 42, 43, 44, 45], "python_vers": [16, 37], "python_wrapper_setup": [13, 34], "pythonhost": [5, 18, 26, 39], "pythonn": [1, 22], "pythonpath": [6, 27, 43, 45], "pythonprop": [42, 44], "pythonx_i": [1, 22], "pyx": [5, 26], "pyyaml": [2, 23], "qa": [5, 6, 9, 10, 12, 17, 26, 27, 30, 31, 33, 38], "qa_flags_ignor": [5, 26], "qawarn": [20, 41], "qemu": [14, 35], "qemu_python_instal": [14, 35], "qmp": [14, 35], "qsl": [42, 44], "qt": [0, 21], "queri": [10, 16, 31, 37], "question": [0, 1, 5, 7, 14, 18, 19, 21, 22, 26, 28, 35, 39, 40, 43, 45], "quick": [43, 45], "quickli": [5, 26], "quit": [2, 4, 6, 11, 12, 23, 25, 27, 32, 33], "quot": [4, 25, 42, 44], "r": [0, 2, 5, 9, 16, 21, 23, 26, 30, 37, 43, 45], "r1": [1, 4, 9, 10, 12, 15, 18, 20, 22, 25, 30, 31, 33, 36, 39, 41, 43, 45], "r1_": [5, 26], "r1_pkg_setup": [0, 2, 21, 23, 42, 44], "r1_python_compil": [3, 5, 24, 26], "r1_python_instal": [3, 5, 24, 26], "r1_python_install_al": [5, 26], "r1_python_prepare_al": [5, 19, 26, 40], "r1_run_phas": [3, 24], "r1_src_compil": [5, 26], "r1_src_instal": [5, 26], "r1_src_prepar": [3, 5, 16, 19, 24, 26, 37, 40], "r1_src_test": [5, 26, 43, 45], "r2": [43, 45], "race": [10, 19, 31, 40], "rais": [5, 16, 26, 37], "random": [19, 40], "randomli": [19, 40], "rang": [2, 5, 12, 23, 26, 33], "ranlib": [2, 23], "rare": [7, 9, 19, 28, 30, 40, 43, 45], "rather": [1, 5, 6, 8, 12, 15, 16, 17, 19, 20, 22, 26, 27, 29, 33, 36, 37, 38, 40, 41, 43, 45], "rb": [16, 37], "rc": [2, 11, 18, 23, 32, 39], "rdep": [3, 24], "rdepend": [0, 1, 2, 4, 5, 6, 8, 13, 14, 21, 22, 23, 25, 26, 27, 29, 34, 35, 42, 43, 44, 45], "re": [5, 8, 15, 26, 29, 36, 43, 45], "reach": [15, 36], "read": [1, 5, 16, 18, 22, 26, 37, 39, 43, 45], "readabl": [20, 41, 43, 45], "readi": [11, 12, 15, 32, 33, 36], "readlin": [2, 5, 8, 14, 23, 26, 29, 35], "readm": [2, 12, 20, 23, 33, 41], "readthedoc": [5, 26], "real": [3, 19, 20, 24, 40, 41, 43, 45], "realli": [13, 15, 19, 34, 36, 40, 43, 45], "reason": [2, 4, 5, 6, 11, 18, 19, 23, 25, 26, 27, 32, 39, 40, 43, 45], "rebas": [12, 33], "rebuild": [1, 6, 11, 22, 27, 32], "rebuild_swig": [2, 23], "recent": [2, 3, 5, 15, 23, 24, 26, 36, 43, 45], "recip": [10, 31], "recogn": [3, 5, 15, 16, 24, 26, 36, 37], "recommend": [2, 5, 7, 12, 13, 14, 15, 16, 18, 19, 23, 26, 28, 33, 34, 35, 36, 37, 39, 40, 42, 43, 44, 45], "recurs": [9, 15, 19, 30, 36, 40], "redefin": [5, 19, 26, 40], "redirect": [15, 36], "reduc": [19, 20, 40, 41], "reenabl": [12, 19, 33, 40], "refer": [0, 1, 5, 9, 11, 13, 14, 17, 18, 20, 21, 22, 26, 30, 32, 34, 35, 38, 39, 41, 42, 44], "refus": [1, 4, 11, 22, 25, 32], "regard": [5, 19, 26, 40], "regener": [5, 12, 26, 33], "regress": [11, 32], "regular": [3, 7, 20, 24, 28, 41, 43, 45], "reinstal": [12, 33], "reinvent": [5, 26], "reject": [8, 15, 16, 29, 36, 37], "rel": [19, 20, 40, 41, 43, 45], "relat": [5, 10, 12, 13, 15, 26, 31, 33, 34, 36, 43, 45], "relax": [2, 23], "releas": [0, 2, 8, 11, 12, 14, 16, 20, 21, 23, 29, 32, 33, 35, 37, 41], "relev": [5, 6, 13, 17, 19, 26, 27, 34, 38, 40, 43, 45], "reli": [5, 6, 11, 26, 27, 32, 43, 45], "reliabl": [17, 19, 38, 40, 43, 45], "remain": [4, 11, 12, 13, 25, 32, 33, 34], "remaind": [12, 33], "rememb": [4, 12, 18, 25, 33, 39], "remind": [6, 27], "remot": [12, 15, 33, 36, 43, 45], "remov": [3, 4, 5, 6, 10, 11, 13, 14, 15, 19, 20, 24, 25, 26, 27, 31, 32, 34, 35, 36, 40, 41, 43, 45], "renam": [13, 15, 16, 18, 20, 34, 36, 37, 39, 41], "renamed_shared_librari": [2, 23], "reorder": [13, 34], "repeat": [7, 14, 15, 20, 28, 35, 36, 41], "repeatedli": [11, 32], "replac": [0, 5, 6, 10, 11, 13, 15, 18, 19, 21, 26, 27, 31, 32, 34, 36, 39, 40], "replai": [43, 45], "replic": [14, 35], "repoman": [13, 34], "report": [1, 6, 9, 10, 12, 15, 22, 27, 30, 31, 33, 36, 43, 45], "repositori": [0, 5, 6, 12, 15, 20, 21, 26, 27, 33, 36, 41], "repres": [3, 5, 24, 26, 43, 45], "reproduc": [43, 45], "request": [5, 8, 10, 12, 15, 26, 29, 31, 33, 36], "requier": [6, 27], "requir": [0, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 44], "required_us": [0, 1, 2, 4, 5, 7, 8, 13, 14, 21, 22, 23, 25, 26, 28, 29, 34, 35, 42, 44], "rerun": [10, 31], "rerunfailur": [19, 40], "resembl": [8, 19, 29, 40], "reserv": [15, 36], "resmok": [2, 23], "resolv": [1, 5, 6, 16, 19, 22, 26, 27, 37, 40, 43, 45], "resourc": [6, 11, 12, 20, 27, 32, 33, 41], "resourcepath": [5, 26], "respect": [1, 4, 5, 12, 14, 15, 19, 20, 22, 25, 26, 33, 35, 36, 40, 41], "respons": [1, 5, 22, 26], "restrict": [0, 2, 4, 5, 10, 19, 20, 21, 23, 25, 26, 31, 40, 41, 42, 43, 44, 45], "result": [0, 5, 6, 8, 9, 12, 15, 16, 17, 18, 19, 20, 21, 26, 27, 29, 30, 33, 36, 37, 38, 39, 40, 41, 43, 45], "retent": [19, 40], "retir": [3, 24], "retroact": [10, 31], "return": [0, 2, 8, 16, 20, 21, 23, 29, 37, 41, 43, 45], "reus": [9, 15, 30, 36], "reveal": [16, 37], "revers": [5, 7, 12, 15, 26, 28, 33, 36], "revert": [11, 32], "revis": [12, 15, 33, 36], "rewrit": [43, 45], "rewritten": [5, 26, 42, 43, 44, 45], "rf": [2, 23, 43, 45], "rich": [5, 26], "right": [6, 7, 27, 28], "riscv": [6, 8, 27, 29, 42, 44], "risk": [15, 36], "riverbankcomput": [8, 29], "rm": [2, 3, 5, 9, 23, 24, 26, 30, 43, 45], "root": [0, 5, 6, 13, 21, 26, 27, 34, 42, 43, 44, 45], "root_numpi": [5, 26], "rootdir": [43, 45], "rootpi": [5, 26], "roughli": [2, 9, 11, 13, 18, 23, 30, 32, 34, 39], "round": [12, 33], "rout": [15, 36], "routin": [10, 14, 31, 35], "rpath": [2, 23], "rpython": [11, 32], "rss": [15, 36], "rst": [5, 26], "rsync": [8, 29], "ruamel": [3, 24], "rule": [1, 2, 6, 7, 8, 13, 14, 15, 18, 22, 23, 27, 28, 29, 34, 35, 36, 39], "run": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 41], "run_in_build_dir": [2, 8, 14, 23, 29, 35], "runner": [1, 5, 7, 10, 22, 26, 28, 31], "runpi": [43, 45], "runtim": [1, 2, 3, 5, 8, 10, 13, 14, 15, 19, 22, 23, 24, 26, 29, 31, 34, 35, 36, 40], "rust": [10, 31], "s390": [0, 2, 4, 5, 6, 8, 21, 23, 25, 26, 27, 29, 42, 43, 44, 45], "sabyenc": [43, 45], "sabyenc3": [43, 45], "sabyenc3_wrapp": [43, 45], "safe": [13, 34], "samba": [2, 23, 42, 44], "same": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43], "sample_cod": [5, 26], "sandbox": [8, 20, 29, 41, 43, 45], "sanit": [11, 16, 32, 37, 43, 45], "satisfi": [0, 1, 8, 12, 21, 22, 29, 33], "sbin": [9, 30], "scan": [13, 15, 34, 36], "schema": [2, 15, 23, 36], "scheme": [16, 37], "sci": [2, 5, 23, 26, 42, 44], "scikit": [5, 26], "scikit_build_cor": [5, 26], "scipi": [2, 23], "scm": [5, 26], "scon": [7, 8, 10, 20, 28, 29, 31, 41], "scons_opt": [2, 23], "scons_target": [2, 23], "scons_var": [2, 23], "sconstruct": [2, 8, 23, 29], "scop": [0, 21], "scope": [1, 4, 5, 8, 13, 19, 22, 25, 26, 29, 34, 40, 43, 45], "scp": [12, 33], "script": [1, 2, 5, 6, 7, 8, 10, 11, 12, 14, 16, 22, 23, 26, 27, 28, 29, 31, 32, 33, 35, 37, 42, 44], "sdist": [5, 15, 18, 20, 26, 36, 39, 41, 43, 45], "sdp": [20, 41], "search": [3, 10, 15, 24, 31, 36], "second": [7, 13, 19, 20, 28, 34, 40, 41], "secondli": [43, 45], "secret": [0, 21], "section": [1, 5, 6, 7, 12, 15, 16, 18, 20, 22, 26, 27, 28, 33, 36, 37, 39, 41, 43, 45], "secur": [11, 12, 32, 33], "sed": [3, 5, 8, 14, 15, 16, 19, 24, 26, 29, 35, 36, 37, 40, 43, 45], "see": [5, 9, 16, 19, 20, 26, 30, 37, 40, 41, 43, 45], "seem": [43, 45], "select": [7, 8, 19, 28, 29, 40, 42, 44], "selenium": [15, 36], "self": [5, 16, 19, 26, 37, 40, 43, 45], "semi": [19, 40], "semver": [15, 36], "sens": [2, 23], "separ": [2, 5, 6, 7, 8, 11, 14, 15, 16, 19, 23, 26, 27, 28, 29, 32, 35, 36, 37, 40, 43, 45], "seri": [9, 30], "serial": [2, 5, 8, 15, 23, 26, 29, 36], "serv": [13, 34], "server": [43, 45], "servic": [0, 15, 21, 36, 43, 45], "session": [3, 24, 43, 45], "set": [2, 4, 5, 6, 7, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 25, 26, 27, 28, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "settl": [18, 39], "setup": [1, 3, 6, 7, 10, 13, 15, 19, 20, 22, 24, 27, 28, 31, 34, 36, 40, 41, 43, 45], "setup_requir": [1, 5, 19, 22, 26, 40], "setuptool": [1, 3, 4, 5, 7, 8, 12, 13, 15, 18, 19, 22, 24, 25, 26, 28, 29, 33, 34, 36, 39, 40, 43, 45], "setuptools_rust": [5, 26], "setuptools_scm": [1, 10, 22, 31, 43, 45], "setuptools_scm_pretend_vers": [5, 26], "sh": [0, 2, 4, 5, 6, 8, 12, 21, 23, 25, 26, 27, 29, 33, 42, 43, 44, 45], "share": [3, 5, 24, 26], "shebang": [1, 10, 11, 22, 31, 32, 43, 45], "shell": [0, 8, 14, 21, 29, 35, 43, 45], "shift": [6, 11, 27, 32], "ship": [5, 20, 26, 41], "shlinkflag": [2, 23], "short": [13, 19, 34, 40], "shortli": [1, 22], "should": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "show": [12, 33], "side": [8, 11, 29, 32], "sidebar": [6, 27], "sign": [12, 15, 33, 36], "signal": [42, 43, 44, 45], "signatur": [11, 16, 32, 37], "signifi": [19, 40], "signific": [4, 12, 19, 25, 33, 40], "silent": [4, 16, 25, 37, 43, 45], "similar": [0, 2, 5, 14, 15, 16, 19, 20, 21, 23, 26, 35, 36, 37, 40, 41, 42, 43, 44, 45], "similarli": [0, 1, 5, 15, 18, 21, 22, 26, 36, 39], "simpl": [2, 5, 7, 13, 14, 17, 23, 26, 28, 34, 35, 38], "simpler": [7, 28], "simplest": [0, 2, 5, 7, 14, 19, 21, 23, 26, 28, 35, 40, 43, 45], "simpli": [15, 16, 17, 36, 37, 38, 43, 45], "simultan": [5, 11, 17, 26, 32, 38, 43, 45], "sinc": [1, 2, 3, 5, 6, 7, 11, 12, 13, 15, 16, 19, 22, 23, 24, 26, 27, 28, 32, 33, 34, 36, 37, 40, 43, 45], "singl": [0, 1, 4, 6, 9, 10, 14, 15, 16, 18, 19, 20, 21, 22, 25, 27, 30, 31, 35, 36, 37, 39, 40, 41, 43, 45], "sip": [5, 8, 15, 26, 29, 36], "sip_api_major_nr": [8, 29], "sipbuild": [5, 26], "siplib": [8, 29], "site": [3, 5, 6, 9, 10, 11, 16, 19, 24, 26, 27, 30, 31, 32, 37, 40, 43, 45], "six": [4, 8, 25, 29, 43, 45], "size": [20, 41], "skip": [4, 8, 10, 12, 16, 20, 25, 29, 31, 33, 37, 41], "skipif": [43, 45], "sleep": [16, 37], "slot": [0, 2, 4, 5, 6, 8, 11, 14, 21, 23, 25, 26, 27, 29, 32, 35, 42, 43, 44, 45], "slow": [11, 19, 32, 40], "slower": [19, 40], "slowli": [11, 15, 32, 36], "small": [18, 39], "smaller": [20, 41], "snappi": [2, 23], "snapshot": [10, 31, 43, 45], "snippet": [6, 16, 19, 20, 27, 37, 40, 41], "snowbal": [2, 23], "so": [1, 4, 5, 6, 11, 12, 15, 16, 18, 19, 22, 25, 26, 27, 32, 33, 36, 37, 39, 40, 42, 43, 44, 45], "socks5": [8, 29], "softwar": [0, 1, 4, 8, 14, 15, 16, 21, 22, 25, 29, 35, 36, 37, 43, 45], "solari": [0, 6, 21, 27, 42, 43, 44, 45], "sole": [13, 34], "solut": [3, 15, 16, 19, 20, 24, 36, 37, 40, 41, 43, 45], "solv": [4, 17, 25, 38], "some": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "someth": [8, 9, 29, 30, 43, 45], "sometim": [1, 4, 5, 6, 7, 9, 11, 19, 22, 25, 26, 27, 28, 30, 32, 40, 43, 45], "soon": [15, 36], "sort": [2, 23], "sound": [42, 44], "sourc": [2, 3, 10, 12, 14, 17, 20, 23, 24, 31, 33, 35, 38, 41, 43, 45], "sourceforg": [14, 35, 42, 44], "space": [19, 40, 43, 45], "sparc": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "sparc64": [0, 6, 21, 27], "spawn": [1, 22], "speak": [6, 11, 27, 32], "spec": [15, 16, 36, 37], "special": [1, 3, 4, 5, 6, 16, 22, 24, 25, 26, 27, 37, 43, 45], "specif": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "specifi": [0, 1, 2, 5, 6, 7, 8, 14, 15, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 35, 36, 39, 40, 41, 42, 43, 44, 45], "speed": [9, 19, 30, 40], "spew": [43, 45], "sphinx": [1, 3, 6, 7, 8, 10, 12, 15, 22, 24, 27, 28, 29, 31, 33, 36], "sphinx_pytest": [15, 36], "sphinx_rtd_them": [8, 29], "sphinxcontrib": [15, 36], "sphinxtrain": [9, 30], "sphobjinv": [15, 36], "split": [0, 5, 13, 16, 21, 26, 34, 37], "spulec": [4, 25], "spuriou": [1, 22], "sqlite": [4, 8, 25, 29], "sqlite3": [4, 25], "src": [2, 5, 9, 23, 26, 30, 43, 45], "src_": [5, 26], "src_compil": [2, 5, 6, 8, 14, 23, 26, 27, 29, 35, 43, 45], "src_configur": [2, 5, 8, 9, 13, 14, 23, 26, 29, 30, 34, 35, 42, 44], "src_instal": [2, 5, 8, 9, 14, 23, 26, 29, 30, 35, 42, 44], "src_prepar": [2, 3, 5, 8, 9, 14, 16, 19, 20, 23, 24, 26, 29, 30, 35, 37, 40, 41], "src_test": [2, 5, 6, 14, 23, 26, 27, 35, 43, 45], "src_unpack": [5, 26], "src_uri": [0, 2, 4, 5, 6, 8, 14, 15, 18, 21, 23, 25, 26, 27, 29, 35, 36, 39, 42, 43, 44, 45], "ssl": [8, 29], "sspl": [2, 23], "stabil": [10, 31], "stabl": [11, 12, 15, 32, 33, 36], "stage": [5, 11, 20, 26, 32, 41, 43, 45], "stage_dir": [2, 23], "stand": [11, 32], "standalon": [5, 12, 26, 33], "standard": [3, 4, 6, 7, 9, 10, 11, 14, 16, 24, 25, 27, 28, 30, 31, 32, 35, 37, 43, 45], "start": [3, 4, 5, 6, 11, 12, 15, 16, 18, 24, 25, 26, 27, 32, 33, 36, 37, 39, 43, 45], "state": [1, 22], "statement": [5, 20, 26, 41], "static": [5, 8, 26, 29], "statist": [43, 45], "statsmodel": [43, 45], "statu": [12, 33], "std": [2, 3, 23, 24], "stdin": [3, 24], "stdlib": [4, 13, 16, 25, 34, 37], "steep": [19, 40], "stemmer": [2, 23], "step": [5, 6, 7, 8, 14, 26, 27, 28, 29, 35], "stestr": [15, 36], "still": [1, 5, 6, 8, 11, 13, 16, 18, 20, 22, 26, 27, 29, 32, 34, 37, 39, 41, 43, 45], "stop": [13, 16, 18, 34, 37, 39], "store": [20, 41], "str": [16, 37], "strai": [10, 31], "stream": [5, 26], "streamlin": [13, 34], "strict": [43, 45], "strictli": [3, 5, 6, 15, 24, 26, 27, 36, 43, 45], "string": [0, 1, 4, 5, 8, 14, 16, 21, 22, 25, 26, 29, 35, 37, 42, 44], "stringif": [16, 37], "strip": [1, 3, 5, 11, 15, 19, 22, 24, 26, 32, 36, 40, 43, 45], "strongli": [5, 6, 15, 26, 27, 36], "structur": [12, 33, 43, 45], "stuff": [13, 34], "style": [3, 4, 5, 13, 16, 17, 19, 24, 25, 26, 34, 37, 38, 40, 43, 45], "sub": [1, 3, 7, 8, 10, 22, 24, 28, 29, 31, 43, 45], "sub_instal": [14, 35], "subclass": [1, 22], "subdir": [14, 35], "subdirectori": [6, 9, 27, 30], "submit": [6, 20, 27, 41], "submodul": [3, 24], "suboptim": [17, 38], "subpackag": [3, 20, 24, 41], "subsequ": [6, 18, 19, 20, 27, 39, 40, 41], "subset": [1, 4, 5, 7, 8, 11, 12, 14, 15, 20, 22, 25, 26, 28, 29, 32, 33, 35, 36, 41, 43, 45], "subslot": [11, 32], "substitut": [0, 4, 21, 25, 42, 44], "subtitl": [8, 29], "subtl": [43, 45], "success": [0, 19, 21, 40], "suffer": [19, 40], "suffici": [2, 5, 6, 7, 11, 14, 18, 23, 26, 27, 28, 32, 35, 39], "suffix": [5, 15, 18, 20, 26, 36, 39, 41], "suggest": [5, 8, 13, 15, 17, 19, 20, 26, 29, 34, 36, 38, 40, 41, 43, 45], "suit": [0, 1, 2, 5, 6, 7, 8, 9, 10, 12, 16, 19, 21, 22, 23, 26, 27, 28, 29, 30, 31, 33, 37, 40, 43, 45], "suitabl": [0, 7, 9, 14, 17, 18, 21, 28, 30, 35, 38, 39], "summar": [5, 16, 26, 37], "summari": [19, 40], "sundial": [2, 23], "sundri": [13, 34], "superset": [42, 44], "suppli": [6, 27], "support": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45], "suppos": [5, 16, 26, 37], "supposedli": [19, 40], "sure": [5, 15, 19, 26, 36, 40, 43, 45], "suscept": [15, 36], "suspici": [3, 24], "swig": [2, 23, 42, 44], "switch": [4, 7, 9, 11, 12, 13, 15, 25, 28, 30, 32, 33, 34, 36, 43, 45], "sy": [2, 5, 8, 11, 14, 15, 16, 23, 26, 29, 32, 35, 36, 37, 43, 45], "symbol": [5, 26], "symlink": [9, 30], "sync": [15, 19, 36, 40], "synopsi": [18, 39], "syntax": [4, 10, 11, 15, 20, 25, 31, 32, 36, 41], "system": [0, 3, 7, 8, 9, 10, 13, 14, 15, 17, 18, 19, 20, 21, 24, 28, 29, 30, 31, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45], "system_eigen": [2, 23], "system_fmt": [2, 23], "system_sundi": [2, 23], "systemd": [43, 45], "t": [5, 7, 8, 11, 13, 26, 28, 29, 32, 34], "tab": [15, 36, 43, 45], "tabl": [5, 12, 13, 15, 16, 19, 26, 33, 34, 36, 37, 40], "tag": [5, 12, 18, 26, 33, 39, 43, 45], "tag_build": [15, 36], "take": [0, 1, 2, 4, 5, 6, 7, 8, 9, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 36, 37, 40, 43, 45], "taken": [5, 16, 26, 37, 43, 45], "talloc": [2, 23, 42, 44], "tar": [0, 2, 4, 5, 6, 8, 12, 14, 18, 21, 23, 25, 26, 27, 29, 33, 35, 39, 42, 43, 44, 45], "tarbal": [5, 12, 26, 33, 43, 45], "target": [2, 8, 9, 11, 12, 15, 23, 29, 30, 32, 33, 36, 42, 43, 44, 45], "task": [5, 8, 12, 26, 29, 33], "tauthon": [11, 32], "tc": [2, 9, 23, 30], "tcsh": [43, 45], "tdb": [2, 23], "team": [15, 36], "technic": [12, 18, 33, 39], "telepathi": [0, 21], "tell": [13, 34], "temp": [43, 45], "tempest": [15, 36], "templat": [0, 2, 4, 5, 15, 20, 21, 23, 25, 26, 36, 41, 42, 44], "temporari": [5, 6, 10, 26, 27, 31, 43, 45], "temporarili": [12, 13, 33, 34], "tend": [20, 41], "term": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "termcolor": [5, 26], "termin": [19, 40, 43, 45], "test": [0, 1, 2, 3, 7, 8, 10, 11, 12, 13, 17, 18, 21, 22, 23, 24, 28, 29, 31, 32, 33, 34, 38, 39, 42, 44], "test_arima": [43, 45], "test_babel_with_language_": [43, 45], "test_build_latex": [43, 45], "test_client": [19, 40], "test_close_to_now_": [12, 33], "test_comparison": [12, 33], "test_contextvar": [19, 40], "test_crc_pickl": [43, 45], "test_decod": [43, 45], "test_empty_size_pickl": [43, 45], "test_filenam": [19, 40], "test_gener": [19, 40], "test_https_warn": [4, 25], "test_leak": [19, 40], "test_loc": [19, 40], "test_login": [43, 45], "test_network": [43, 45], "test_null_byt": [43, 45], "test_polyglossia_with_language_": [43, 45], "test_pytest_plugin": [5, 26], "test_request": [4, 25], "test_start_params_bug": [43, 45], "test_sync": [19, 40], "test_sync_contextvar": [19, 40], "test_test_util": [5, 26], "test_testcase_no_app": [5, 26], "test_transport": [19, 40], "test_transport_work": [19, 40], "test_wrapped_case_is_collect": [19, 40], "testbitvector": [5, 26], "testcas": [19, 40], "testrequest": [4, 25], "tests_requir": [1, 5, 22, 26], "testsupport": [43, 45], "tevent": [2, 23], "text": [5, 8, 16, 26, 29, 37, 43, 45], "textual": [5, 26], "tgz": [14, 35], "than": [1, 2, 3, 5, 6, 7, 8, 11, 12, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 32, 33, 36, 37, 38, 39, 40, 41, 43, 45], "thei": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45], "them": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45], "theme": [5, 6, 8, 26, 27, 29], "themselv": [6, 20, 27, 41, 43, 45], "therefor": [1, 2, 5, 6, 7, 8, 11, 12, 15, 19, 20, 22, 23, 26, 27, 28, 29, 32, 33, 36, 40, 41, 43, 45], "thermodynam": [2, 23], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "thin": [6, 27, 43, 45], "thing": [13, 17, 34, 38], "think": [16, 37], "third": [5, 7, 13, 20, 26, 28, 34, 41], "thirdli": [43, 45], "those": [5, 6, 8, 9, 19, 26, 27, 29, 30, 40, 43, 45], "though": [8, 11, 29, 32], "thread": [2, 8, 19, 23, 29, 40, 42, 43, 44, 45], "three": [0, 1, 3, 9, 13, 16, 20, 21, 22, 24, 30, 34, 37, 41], "through": [3, 4, 5, 6, 8, 11, 16, 19, 24, 25, 26, 27, 29, 32, 37, 40], "throughout": [6, 27], "throw": [5, 16, 26, 37], "thumb": [1, 6, 7, 13, 15, 22, 27, 28, 34, 36], "tiff": [5, 26], "time": [1, 3, 4, 5, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45], "timeout": [10, 31, 43, 45], "tip": [10, 31, 43, 45], "titl": [15, 18, 36, 39], "tl": [4, 25], "tmp": [3, 5, 9, 19, 20, 24, 26, 30, 40, 41, 43, 45], "tmp_path_retention_polici": [19, 40], "tmpl": [20, 41], "todai": [16, 37], "todo": [2, 9, 12, 23, 30, 33], "toml": [1, 5, 7, 10, 12, 20, 22, 26, 28, 31, 33, 41, 43, 45], "tomldecodeerror": [16, 37], "tomli": [5, 12, 15, 26, 33, 36], "tomli_w": [16, 37], "tomlkit": [16, 37], "too": [5, 11, 19, 26, 32, 40, 43, 45], "tool": [1, 2, 5, 8, 14, 15, 16, 20, 22, 23, 26, 29, 35, 36, 37, 41, 43, 45], "toolchain": [2, 4, 8, 23, 25, 29], "toolkit": [8, 29], "top": [3, 5, 9, 10, 18, 19, 24, 26, 30, 31, 39, 40, 43, 45], "topic": [3, 17, 24, 38], "tornado": [19, 40], "total": [7, 19, 28, 40], "toward": [5, 26], "tox": [1, 5, 22, 26, 43, 45], "traceback": [3, 5, 24, 26, 43, 45], "track": [12, 15, 33, 36], "tradit": [3, 24], "tradition": [3, 24], "train": [8, 29], "trans2arab": [42, 44], "transform": [18, 39], "transit": [13, 15, 34, 36], "translat": [8, 18, 29, 39], "transport": [2, 23], "travel": [4, 25], "travi": [5, 26], "treat": [2, 19, 23, 40], "tree": [5, 12, 13, 20, 26, 33, 34, 41, 43, 45], "tri": [5, 26], "trial": [13, 34], "trigger": [6, 12, 19, 20, 27, 33, 40, 41, 43, 45], "trimesh": [20, 41], "trivial": [0, 5, 12, 16, 21, 26, 33, 37, 42, 44], "trolliu": [11, 32], "true": [0, 1, 2, 5, 6, 8, 12, 13, 16, 21, 22, 23, 26, 27, 29, 33, 34, 37, 43, 45], "trustm": [4, 25], "try": [1, 6, 8, 9, 11, 16, 19, 22, 27, 29, 30, 32, 37, 40, 43, 45], "tsa": [43, 45], "tslib": [5, 26], "tupl": [16, 37], "turn": [15, 36, 43, 45], "tut": [2, 23], "twice": [19, 40], "two": [1, 5, 6, 8, 9, 11, 13, 16, 19, 20, 22, 26, 27, 29, 30, 32, 34, 37, 40, 41, 42, 44], "txt": [5, 6, 12, 19, 26, 27, 33, 40], "type": [2, 3, 6, 13, 15, 16, 23, 24, 27, 34, 36, 37], "typeerror": [10, 31], "typic": [1, 14, 22, 35], "u": [15, 36], "ubuntu": [43, 45], "udev": [0, 21], "udevdir": [2, 8, 23, 29], "ugli": [13, 34], "unabl": [5, 15, 26, 36, 43, 45], "unblock": [12, 33], "unbundl": [12, 33], "unclear": [43, 45], "uncommon": [5, 15, 16, 26, 36, 37], "uncondit": [1, 2, 5, 10, 13, 14, 15, 22, 23, 26, 31, 34, 35, 36], "unconditioanlli": [43, 45], "uncondition": [0, 1, 2, 4, 5, 6, 8, 11, 20, 21, 22, 23, 25, 26, 27, 29, 32, 41, 42, 43, 44, 45], "undefin": [5, 26], "under": [0, 1, 2, 3, 4, 5, 6, 8, 14, 21, 22, 23, 24, 25, 26, 27, 29, 35, 42, 43, 44, 45], "underli": [5, 6, 7, 19, 26, 27, 28, 40], "underscor": [5, 15, 18, 26, 36, 39, 43, 45], "understand": [0, 21], "understood": [11, 32], "undesir": [1, 5, 10, 19, 22, 26, 31, 40], "unexpect": [10, 20, 31, 41], "unexpectedli": [43, 45], "unfix": [19, 40], "unfortun": [13, 15, 16, 19, 20, 34, 36, 37, 40, 41, 43, 45], "unicod": [16, 37], "uninstal": [20, 41], "uniqu": [5, 14, 26, 35], "unit": [2, 23], "unittest": [5, 11, 16, 26, 32, 37, 43, 45], "univers": [43, 45], "unless": [5, 6, 8, 15, 18, 26, 27, 29, 36, 39], "unlik": [3, 5, 6, 11, 15, 24, 26, 27, 32, 36], "unmatch": [13, 34], "unnecessari": [14, 15, 35, 36, 42, 43, 44, 45], "unnecessarili": [5, 26], "unpack": [5, 18, 26, 39], "unpars": [16, 37], "unpredict": [5, 26], "unresolv": [5, 26], "unset": [5, 6, 26, 27], "unstabl": [19, 40], "unsupport": [8, 11, 29, 32], "until": [16, 37], "unusu": [12, 33], "unzip": [5, 18, 26, 39], "up": [5, 6, 9, 11, 13, 14, 15, 17, 19, 20, 26, 27, 30, 32, 34, 35, 36, 38, 40, 41, 43, 45], "updat": [4, 6, 9, 11, 12, 16, 18, 25, 27, 30, 32, 33, 37, 39], "upload": [12, 33], "uppercas": [13, 15, 16, 18, 34, 36, 37, 39], "upstream": [1, 3, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 18, 19, 20, 22, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 37, 39, 40, 41, 43, 45], "uri": [15, 36], "url": [5, 10, 11, 15, 16, 26, 31, 32, 36, 37], "urllib": [16, 37], "urllib3": [8, 12, 29, 33], "urlpars": [16, 37], "urlsplit": [11, 32], "us": [1, 9, 10, 11, 12, 13, 15, 16, 18, 20, 22, 30, 31, 32, 33, 34, 36, 37, 39, 41], "usabl": [1, 11, 22, 32], "usag": [10, 18, 31, 39], "usb": [2, 8, 23, 29], "use_en": [42, 44], "use_pch": [2, 23], "use_pep517": [5, 26], "use_scon": [2, 8, 23, 29], "user": [2, 3, 5, 6, 7, 8, 11, 12, 15, 19, 23, 24, 26, 27, 28, 29, 32, 33, 36, 40, 42, 43, 44, 45], "userland": [14, 35], "userland_gnu": [8, 29], "userspac": [2, 23], "usex": [2, 5, 23, 26, 42, 44], "usng": [43, 45], "usr": [1, 2, 3, 5, 7, 8, 9, 19, 20, 22, 23, 24, 26, 28, 29, 30, 40, 41, 43, 45], "usual": [1, 3, 4, 5, 7, 11, 13, 15, 16, 19, 20, 22, 24, 25, 26, 28, 32, 34, 36, 37, 40, 41, 43, 45], "util": [1, 2, 4, 5, 7, 8, 9, 12, 15, 19, 20, 22, 23, 25, 26, 28, 29, 30, 33, 36, 40, 41, 42, 43, 44, 45], "utils_src_configur": [2, 23, 42, 44], "uucp": [2, 8, 23, 29], "v": [2, 4, 5, 10, 13, 14, 23, 25, 26, 31, 34, 35, 43, 45], "v2": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "v3": [12, 33], "valid": [1, 5, 8, 15, 16, 20, 22, 26, 29, 36, 37, 41, 43, 45], "valu": [1, 5, 6, 9, 13, 18, 19, 22, 26, 27, 30, 34, 39, 40, 43, 45], "var": [43, 45], "vararg": [16, 37], "variabl": [0, 1, 5, 6, 8, 13, 14, 16, 18, 19, 21, 22, 26, 27, 29, 34, 35, 37, 39, 40, 42, 43, 44, 45], "variant": [10, 11, 16, 19, 31, 32, 37, 40, 43, 45], "variat": [10, 31], "variou": [1, 5, 6, 9, 13, 16, 22, 26, 27, 30, 34, 37], "varkw": [16, 37], "vast": [5, 26], "vc": [10, 31, 43, 45], "ve": [16, 37], "vendor": [12, 13, 33, 34], "venv": [5, 6, 13, 26, 27, 34, 43, 45], "verbatim": [16, 37], "verbos": [0, 15, 20, 21, 36, 41, 43, 45], "veri": [3, 4, 5, 6, 9, 11, 15, 17, 18, 19, 20, 24, 25, 26, 27, 30, 32, 36, 38, 39, 40, 41, 43, 45], "verifi": [0, 1, 5, 6, 8, 13, 20, 21, 22, 26, 27, 29, 34, 41, 43, 45], "version": [1, 2, 3, 5, 6, 7, 8, 10, 12, 13, 16, 17, 19, 22, 23, 24, 26, 27, 28, 29, 31, 33, 34, 37, 38, 40, 43, 45], "version_info": [16, 37], "versioningit": [15, 36], "via": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 40, 42, 43, 44, 45], "video": [8, 29], "violat": [20, 41], "virtual": [0, 2, 8, 14, 21, 23, 29, 35], "virtualenv": [1, 6, 12, 22, 27, 33, 43, 45], "virtx": [43, 45], "visual": [2, 23], "vmd": [2, 23], "vmxcap": [14, 35], "voacap": [42, 44], "vulner": [11, 32], "vulnkei": [9, 30], "vv": [43, 45], "w": [18, 39], "wa": [0, 4, 5, 11, 12, 13, 16, 18, 19, 20, 21, 25, 26, 32, 33, 34, 37, 39, 40, 41, 43, 45], "waf": [10, 31, 42, 44], "waf_binari": [2, 23, 42, 44], "wai": [0, 5, 6, 9, 12, 13, 15, 19, 21, 26, 27, 30, 33, 34, 36, 40, 43, 45], "wait": [20, 41], "wall": [2, 23], "want": [6, 8, 27, 29, 43, 45], "warn": [2, 5, 10, 16, 23, 26, 31, 37, 43, 45], "watchfil": [15, 36], "watchgod": [15, 36], "wb": [16, 37], "wcwidth": [43, 45], "we": [3, 4, 6, 8, 11, 12, 14, 15, 17, 19, 20, 24, 25, 27, 29, 32, 33, 35, 36, 38, 40, 41], "web": [11, 32], "webencod": [43, 45], "webp": [5, 26], "websupport": [15, 36], "welcom": [17, 38], "well": [1, 5, 7, 8, 11, 13, 15, 18, 20, 22, 26, 28, 29, 32, 34, 36, 39, 41], "went": [6, 27], "were": [0, 2, 3, 8, 11, 12, 13, 16, 18, 20, 21, 23, 24, 29, 32, 33, 34, 37, 39, 41], "what": [16, 37], "wheel": [5, 10, 11, 12, 15, 19, 20, 26, 31, 32, 33, 36, 40, 41], "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 40, 41, 42, 43, 44, 45], "whenev": [1, 4, 9, 11, 14, 15, 19, 22, 25, 30, 32, 35, 36, 40, 42, 43, 44, 45], "where": [0, 3, 5, 6, 9, 11, 12, 14, 16, 18, 21, 24, 26, 27, 30, 32, 33, 35, 37, 39, 42, 43, 44, 45], "wherea": [16, 18, 37, 39], "whether": [0, 1, 4, 5, 6, 7, 15, 19, 21, 22, 25, 26, 27, 28, 36, 40, 42, 43, 44, 45], "which": [0, 6, 9, 10, 11, 14, 19, 21, 27, 30, 31, 32, 35, 40, 43, 45], "while": [0, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], "whitelist": [43, 45], "whl": [5, 18, 26, 39], "who": [5, 17, 26, 38, 43, 45], "whole": [4, 19, 25, 40, 43, 45], "wholli": [43, 45], "whom": [43, 45], "whose": [1, 5, 18, 22, 26, 39], "why": [5, 6, 10, 26, 27, 31], "wide": [15, 36, 43, 45], "wider": [2, 23], "widest": [5, 26], "widget": [14, 35], "wiki": [0, 4, 8, 9, 12, 14, 17, 21, 25, 29, 30, 33, 35, 38], "wildcard": [4, 25], "window": [11, 32], "wise": [7, 28], "wish": [3, 6, 24, 27, 43, 45], "within": [3, 5, 6, 12, 15, 17, 24, 26, 27, 33, 36, 38, 43, 45], "without": [1, 4, 10, 11, 13, 14, 15, 18, 19, 22, 25, 31, 32, 34, 35, 36, 39, 40, 43, 45], "wno": [2, 23], "won": [8, 29], "word": [5, 26], "work": [0, 3, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 18, 19, 21, 24, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 40, 42, 43, 44, 45], "workaround": [5, 20, 26, 41], "workdir": [2, 5, 18, 23, 26, 39], "workflow": [12, 33], "world": [19, 40], "worm": [16, 37], "worri": [5, 16, 26, 37], "worst": [16, 37, 43, 45], "worth": [5, 26], "worthwhil": [1, 22, 43], "would": [0, 2, 4, 5, 7, 11, 12, 14, 15, 16, 18, 21, 23, 25, 26, 28, 32, 33, 35, 36, 37, 39, 42, 43, 44, 45], "wrap": [0, 5, 6, 9, 13, 21, 26, 27, 30, 34, 43, 45], "wrapper": [0, 1, 6, 9, 13, 14, 21, 22, 27, 30, 34, 35, 43, 45], "write": [5, 6, 7, 12, 16, 17, 20, 26, 27, 28, 33, 37, 38, 41], "written": [0, 1, 5, 7, 10, 11, 16, 19, 21, 22, 26, 28, 31, 32, 37, 40], "wrong": [6, 13, 15, 27, 34, 36], "wrongli": [16, 20, 37, 41, 43, 45], "wstool": [15, 36], "www": [0, 2, 8, 14, 21, 23, 29, 35, 42, 44], "wx_gtk_ver": [2, 23, 42, 44], "wxpython": [2, 23, 42, 44], "x": [1, 5, 11, 16, 19, 22, 26, 32, 37, 40, 43, 45], "x11": [2, 23], "x64": [0, 4, 6, 8, 21, 25, 27, 29, 42, 43, 44, 45], "x86": [0, 2, 4, 5, 6, 8, 12, 14, 21, 23, 25, 26, 27, 29, 33, 35, 42, 43, 44, 45], "x86_64": [5, 26], "xbox": [2, 23], "xboxdrv": [2, 23], "xdg": [4, 25], "xdist": [10, 12, 31, 33, 43, 45], "xfail": [43, 45], "xml": [5, 6, 26, 27], "xmltodict": [5, 26], "xolox": [5, 26], "xvfb": [43, 45], "xz": [0, 4, 12, 14, 21, 25, 33, 35, 42, 44], "y": [1, 2, 11, 16, 22, 23, 32, 37], "yaml": [2, 3, 23, 24], "ye": [2, 23], "year": [11, 32], "yet": [3, 5, 8, 11, 24, 26, 29, 32, 42, 44], "yield": [16, 37], "yml": [5, 26], "yoda": [42, 44], "you": [1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45], "your": [2, 4, 5, 6, 7, 8, 11, 12, 15, 16, 18, 19, 20, 23, 25, 26, 27, 28, 29, 32, 33, 36, 37, 39, 40, 41, 43, 45], "yourself": [2, 4, 23, 25, 43, 45], "zero": [4, 15, 25, 36], "zip": [5, 6, 18, 26, 27, 39], "zlib": [2, 23], "zoneinfo": [4, 25], "zope": [3, 15, 24, 36], "zsi": [2, 23], "zstd": [2, 23]}, "titles": ["python-any-r1 \u2014 build-time dependency", "Common basics", "Integration with build systems written in Python", "Advanced concepts", "Advanced dependencies", "distutils-r1 \u2014 standard Python build systems", "distutils-r1 legacy concepts", "Choosing between Python eclasses", "Expert python-r1 usage", "Common helper functions", "Gentoo Python Guide", "Python interpreters", "Maintenance of Python implementations", "Migration guides", "python-r1 \u2014 multi-impl packages", "Python package maintenance", "Porting tips", "Preface", "pypi \u2014 helper eclass for PyPI archives", "pytest recipes", "QA checks and warnings", "python-any-r1 \u2014 build-time dependency", "Common basics", "Integration with build systems written in Python", "Advanced concepts", "Advanced dependencies", "distutils-r1 \u2014 standard Python build systems", "distutils-r1 legacy concepts", "Choosing between Python eclasses", "Expert python-r1 usage", "Common helper functions", "Gentoo Python Guide", "Python interpreters", "Maintenance of Python implementations", "Migration guides", "python-r1 \u2014 multi-impl packages", "Python package maintenance", "Porting tips", "Preface", "pypi \u2014 helper eclass for PyPI archives", "pytest recipes", "QA checks and warnings", "python-single-r1 \u2014 single-impl packages", "Tests in Python packages", "python-single-r1 \u2014 single-impl packages", "Tests in Python packages"], "titleterms": {"1": [16, 37], "10": [16, 37], "11": [16, 37], "12": [16, 37], "2": [15, 36], "3": [16, 37], "517": [5, 13, 20, 26, 34, 41, 43, 45], "7": [13, 34], "8": [13, 16, 34, 37], "9": [16, 37], "A": [42, 44], "In": [6, 27], "No": [16, 37], "The": [1, 5, 22, 26], "__legacy__": [20, 41], "_make_test_flaki": [19, 40], "abort": [43, 45], "access": [43, 45], "ad": [3, 12, 15, 24, 33, 36, 43, 45], "addit": [0, 5, 14, 21, 26, 35], "advanc": [3, 4, 24, 25], "alia": [16, 37], "altern": [11, 32], "an": [16, 19, 37, 40], "ani": [0, 8, 21, 29], "api": [8, 20, 29, 41], "ar": [3, 20, 24, 41], "archiv": [5, 18, 26, 39], "argument": [5, 19, 26, 40], "assert": [16, 37, 43, 45], "asyncio": [16, 37], "autodoc": [5, 26], "autoload": [19, 40], "autotool": [14, 35], "avoid": [19, 40], "backend": [5, 20, 26, 41], "backport": [11, 32], "base": [6, 16, 19, 27, 37, 40], "base64": [16, 37], "basic": [0, 1, 5, 21, 22, 26, 42, 43, 44, 45], "befor": [6, 27, 43, 45], "between": [7, 28], "binari": [18, 39], "bootstrap": [12, 33], "bpo43882": [16, 37], "build": [0, 1, 2, 5, 6, 7, 8, 12, 13, 14, 21, 22, 23, 26, 27, 28, 29, 33, 34, 35, 42, 44], "build_dir": [5, 26], "build_meta": [20, 41], "buildapi": [20, 41], "byte": [9, 20, 30, 41], "bytecod": [20, 41], "c": [5, 26, 43, 45], "call": [5, 26], "called_with": [16, 37], "can": [15, 36], "cargo": [5, 26], "case": [43, 45], "cffi": [4, 25], "chang": [12, 16, 33, 37], "charact": [16, 37], "check": [15, 20, 36, 41], "checklist": [43, 45], "choos": [7, 28, 43, 45], "co": [15, 36], "combin": [8, 29], "command": [5, 26], "common": [1, 9, 22, 30], "compil": [9, 20, 30, 41], "concept": [3, 6, 24, 27], "condit": [0, 2, 4, 5, 14, 21, 23, 25, 26, 35, 42, 44], "config": [16, 37], "configur": [16, 37], "content": [10, 31], "coroutin": [16, 37], "correct": [43, 45], "cpython": [12, 33], "cr": [16, 37], "custom": [5, 18, 26, 39, 43, 45], "cycl": [11, 32], "cython": [5, 26], "d": [5, 26], "deadlock": [19, 40], "deal": [19, 40, 43, 45], "decodestr": [16, 37], "default": [16, 37], "dep": [15, 36], "depend": [0, 1, 2, 4, 5, 8, 14, 19, 21, 22, 23, 25, 26, 29, 35, 40, 42, 43, 44, 45], "deprec": [16, 20, 37, 41], "determin": [3, 24], "differ": [6, 8, 18, 27, 29, 39], "directori": [19, 40], "disabl": [19, 40], "disjoint": [8, 29], "distribut": [18, 39], "distutil": [5, 6, 7, 8, 16, 26, 27, 28, 29, 37], "distutils_enable_test": [43, 45], "distutils_use_setuptool": [6, 27], "document": [5, 20, 26, 41], "due": [19, 40, 43, 45], "eapi": [13, 15, 34, 36], "eclass": [7, 12, 18, 28, 33, 39], "enabl": [5, 26], "encodestr": [16, 37], "entri": [6, 27], "environ": [1, 22, 43, 45], "error": [16, 37], "exampl": [20, 41], "exist": [15, 36], "expert": [8, 29], "extens": [5, 26, 43, 45], "extra": [2, 23, 43, 45], "failur": [19, 40, 43, 45], "fallback": [16, 37], "feed": [15, 36], "fetch": [18, 39], "file": [19, 20, 40, 41, 43, 45], "filenam": [18, 39], "find": [1, 22], "first": [7, 28], "fix": [9, 30], "fixtur": [19, 40], "flag": [4, 25], "flaki": [19, 40], "flit": [20, 41], "flit_scm": [5, 26], "formatargspec": [16, 37], "found": [16, 19, 37, 40], "from": [1, 13, 22, 34], "function": [5, 9, 26, 30], "gener": [16, 18, 37, 39], "gentoo": [3, 10, 24, 31], "getargspec": [16, 37], "got": [19, 40], "gpy": [15, 36], "greenlet": [4, 25], "guarante": [11, 32], "guid": [10, 13, 31, 34], "hang": [19, 40], "hatch": [5, 26], "helper": [9, 18, 30, 39], "hierarch": [3, 24], "ht": [16, 37], "hybrid": [2, 23, 42, 44], "i": [43, 45], "impl": [2, 7, 14, 23, 28, 35, 42, 44], "implement": [8, 9, 11, 12, 15, 29, 30, 32, 33, 36], "import": [43, 45], "importerror": [43, 45], "importpathmismatcherror": [19, 40], "improv": [20, 41], "indic": [10, 31], "inform": [9, 30], "initi": [12, 33], "inspect": [16, 37], "instal": [2, 5, 6, 9, 14, 15, 20, 23, 26, 27, 30, 35, 36, 41, 42, 43, 44, 45], "integr": [2, 5, 23, 26], "internet": [43, 45], "interpret": [4, 8, 11, 12, 25, 29, 32, 33], "invalid": [16, 37], "keyword": [19, 40], "legaci": [3, 5, 6, 18, 24, 26, 27, 39], "level": [20, 41], "lf": [16, 37], "librari": [16, 37], "life": [11, 32], "list": [1, 15, 16, 22, 36, 37], "longer": [16, 37], "maintain": [15, 36], "mainten": [12, 15, 33, 36], "manual": [5, 14, 26, 35, 42, 44], "marker": [19, 40], "masonri": [20, 41], "match": [18, 39], "meson": [2, 23], "method": [16, 37], "migrat": [13, 34], "miss": [19, 40, 43, 45], "mode": [5, 26, 43, 45], "modern": [18, 39], "modul": [9, 20, 30, 41], "monitor": [15, 36], "more": [43, 45], "most": [1, 22], "multi": [2, 7, 14, 23, 28, 35], "multipl": [0, 11, 21, 32, 42, 44], "name": [15, 18, 19, 36, 39, 40], "namespac": [3, 24], "new": [3, 12, 15, 24, 33, 36], "non": [5, 26], "note": [12, 33], "now": [16, 37], "old": [13, 34], "option": [4, 5, 25, 26], "other": [6, 16, 19, 27, 37, 40], "out": [6, 27], "outdat": [15, 36], "overview": [7, 28], "packag": [1, 2, 3, 4, 5, 6, 7, 12, 14, 15, 16, 18, 20, 22, 23, 24, 25, 26, 27, 28, 33, 35, 36, 37, 39, 41, 42, 43, 44, 45], "parallel": [5, 19, 26, 40], "partial": [8, 29], "pass": [5, 26], "patchset": [12, 33], "path": [19, 40], "pdm": [5, 26], "pep": [5, 13, 20, 26, 34, 41, 43, 45], "phase": [5, 26, 43, 45], "pip": [15, 36], "pkg": [16, 37], "plugin": [19, 40], "poetri": [20, 41], "point": [6, 27], "polici": [15, 36], "port": [12, 15, 16, 33, 36, 37], "portag": [20, 41], "prefac": [17, 38], "prepar": [12, 33], "prevent": [19, 40], "problemat": [43, 45], "profil": [12, 33], "project": [6, 15, 27, 36], "pure": [2, 14, 23, 35], "py": [5, 26], "pypi": [12, 15, 18, 33, 36, 39, 43, 45], "pyproject": [6, 27], "pytest": [19, 40, 43, 45], "python": [0, 1, 2, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 42, 43, 44, 45], "python_compat": [1, 22], "python_compil": [5, 26], "python_configur": [5, 26], "python_dep": [1, 22], "python_instal": [5, 26], "python_prepar": [5, 26], "python_required_us": [1, 22], "python_setup": [8, 29], "python_test": [5, 26], "python_usedep": [13, 34], "qa": [20, 41], "queri": [9, 30], "r1": [0, 2, 5, 6, 7, 8, 13, 14, 21, 23, 26, 27, 28, 29, 34, 35, 42, 44], "race": [5, 26], "recip": [19, 40], "regular": [8, 29], "relat": [20, 41], "releas": [15, 36], "remov": [12, 16, 33, 37], "replac": [16, 37], "repologi": [15, 36], "report": [20, 41], "request": [4, 25], "requir": [43, 45], "rerun": [19, 40], "restrict": [8, 29], "retroact": [16, 37], "routin": [15, 36], "run": [19, 40, 43, 45], "runner": [19, 40, 43, 45], "runtim": [6, 7, 27, 28, 42, 44], "rust": [4, 5, 25, 26], "scon": [2, 23], "script": [9, 30], "set": [0, 8, 21, 29], "setup": [5, 26], "setuptool": [6, 20, 27, 41], "setuptools_scm": [5, 26], "shebang": [9, 30], "singl": [2, 5, 7, 13, 23, 26, 28, 34, 42, 44], "site": [20, 41], "skip": [19, 40, 43, 45], "snapshot": [5, 26], "sourc": [5, 6, 18, 26, 27, 39], "specif": [12, 33], "sphinx": [5, 26], "stabil": [11, 32], "standard": [5, 26], "strai": [20, 41], "strip": [16, 37], "structur": [3, 24], "sub": [5, 26], "suit": [4, 25], "support": [11, 15, 32, 36], "syntax": [13, 34], "sysconfig": [16, 37], "system": [1, 2, 5, 6, 12, 22, 23, 26, 27, 33], "tabl": [10, 31], "temporari": [19, 40], "test": [4, 5, 6, 15, 16, 19, 20, 25, 26, 27, 36, 37, 40, 41, 43, 45], "time": [0, 2, 7, 8, 14, 21, 23, 28, 29, 35, 42, 44], "timeout": [19, 40], "tip": [16, 37], "toml": [6, 16, 27, 37], "tomli": [16, 37], "tomllib": [16, 37], "top": [20, 41], "trigger": [16, 37], "type": [1, 22], "typeerror": [19, 40], "uncondit": [0, 21, 42, 44], "undesir": [43, 45], "unexpect": [19, 40], "url": [18, 39], "urlsplit": [16, 37], "us": [0, 2, 3, 4, 5, 6, 7, 8, 14, 19, 21, 23, 24, 25, 26, 27, 28, 29, 35, 40, 42, 43, 44, 45], "usag": [5, 8, 26, 29], "v": [6, 7, 27, 28], "variant": [5, 26], "variat": [6, 27], "vc": [5, 26], "verifi": [15, 36], "version": [4, 11, 15, 18, 25, 32, 36, 39], "via": [5, 15, 26, 36], "virtualx": [43, 45], "w": [16, 37], "waf": [2, 23], "warn": [19, 20, 40, 41], "wheel": [18, 39], "whether": [3, 24], "which": [15, 36], "why": [43, 45], "without": [5, 16, 26, 37], "written": [2, 23], "xdist": [19, 40]}}) \ No newline at end of file
+Search.setIndex({"alltitles": {".called_with (and other invalid assertions) now trigger an error": [[16, "called-with-and-other-invalid-assertions-now-trigger-an-error"], [37, "called-with-and-other-invalid-assertions-now-trigger-an-error"]], "A hybrid: build-time + conditional runtime": [[42, "a-hybrid-build-time-conditional-runtime"], [44, "a-hybrid-build-time-conditional-runtime"]], "Adding a new Python implementation": [[12, "adding-a-new-python-implementation"], [33, "adding-a-new-python-implementation"]], "Adding more test dependencies": [[43, "adding-more-test-dependencies"], [45, "adding-more-test-dependencies"]], "Adding new Python implementations to existing packages": [[15, "adding-new-python-implementations-to-existing-packages"], [36, "adding-new-python-implementations-to-existing-packages"]], "Adding new namespace packages to Gentoo": [[3, "adding-new-namespace-packages-to-gentoo"], [24, "adding-new-namespace-packages-to-gentoo"]], "Additional Sphinx extensions": [[5, "additional-sphinx-extensions"], [26, "additional-sphinx-extensions"]], "Additional build-time Python use": [[14, "additional-build-time-python-use"], [35, "additional-build-time-python-use"]], "Additional conditional dependencies": [[0, "additional-conditional-dependencies"], [21, "additional-conditional-dependencies"]], "Advanced concepts": [[3, null], [24, null]], "Advanced dependencies": [[4, null], [25, null]], "Alternative Python implementations": [[11, "alternative-python-implementations"], [32, "alternative-python-implementations"]], "Avoiding dependencies on other pytest plugins": [[19, "avoiding-dependencies-on-other-pytest-plugins"], [40, "avoiding-dependencies-on-other-pytest-plugins"]], "Avoiding the dependency on pytest-runner": [[19, "avoiding-the-dependency-on-pytest-runner"], [40, "avoiding-the-dependency-on-pytest-runner"]], "Backports": [[11, "backports"], [32, "backports"]], "Basic documentation with autodoc": [[5, "basic-documentation-with-autodoc"], [26, "basic-documentation-with-autodoc"]], "Basic use (PEP 517 mode)": [[5, "basic-use-pep-517-mode"], [26, "basic-use-pep-517-mode"]], "Basic use case": [[43, "basic-use-case"], [45, "basic-use-case"]], "Basic use for unconditional Python": [[0, "basic-use-for-unconditional-python"], [21, "basic-use-for-unconditional-python"], [42, "basic-use-for-unconditional-python"], [44, "basic-use-for-unconditional-python"]], "Binary distribution filenames": [[18, "binary-distribution-filenames"], [39, "binary-distribution-filenames"]], "Build time vs runtime use": [[7, "build-time-vs-runtime-use"], [28, "build-time-vs-runtime-use"]], "Build-time use": [[2, "build-time-use"], [23, "build-time-use"]], "Build-time use with extra dependencies": [[2, "build-time-use-with-extra-dependencies"], [23, "build-time-use-with-extra-dependencies"]], "Build-time use with no extra dependencies": [[2, "build-time-use-with-no-extra-dependencies"], [23, "build-time-use-with-no-extra-dependencies"]], "Building documentation via Sphinx": [[5, "building-documentation-via-sphinx"], [26, "building-documentation-via-sphinx"]], "Byte-compiling Python modules": [[9, "byte-compiling-python-modules"], [30, "byte-compiling-python-modules"]], "CPython patchsets": [[12, "cpython-patchsets"], [33, "cpython-patchsets"]], "Calling custom setup.py commands": [[5, "calling-custom-setup-py-commands"], [26, "calling-custom-setup-py-commands"]], "Checking via pip": [[15, "checking-via-pip"], [36, "checking-via-pip"]], "Checklist for dealing with test failures": [[43, "checklist-for-dealing-with-test-failures"], [45, "checklist-for-dealing-with-test-failures"]], "Choosing between Python eclasses": [[7, null], [28, null]], "Choosing the correct test runner": [[43, "choosing-the-correct-test-runner"], [45, "choosing-the-correct-test-runner"]], "Combining any-r1 API with implementation restrictions": [[8, "combining-any-r1-api-with-implementation-restrictions"], [29, "combining-any-r1-api-with-implementation-restrictions"]], "Common basics": [[1, null], [22, null]], "Common helper functions": [[9, null], [30, null]], "Compiled bytecode-related warnings": [[20, "compiled-bytecode-related-warnings"], [41, "compiled-bytecode-related-warnings"]], "Conditional Python use": [[0, "conditional-python-use"], [14, "conditional-python-use"], [21, "conditional-python-use"], [35, "conditional-python-use"], [42, "conditional-python-use"], [44, "conditional-python-use"]], "Contents:": [[10, null], [31, null]], "Customizing the generated URL": [[18, "customizing-the-generated-url"], [39, "customizing-the-generated-url"]], "Customizing the test phase": [[43, "customizing-the-test-phase"], [45, "customizing-the-test-phase"]], "Customizing the test phase for pytest": [[43, "customizing-the-test-phase-for-pytest"], [45, "customizing-the-test-phase-for-pytest"]], "DISTUTILS_USE_SETUPTOOLS": [[6, "distutils-use-setuptools"], [27, "distutils-use-setuptools"]], "Dealing with flaky tests": [[19, "dealing-with-flaky-tests"], [40, "dealing-with-flaky-tests"]], "Dependencies": [[0, "dependencies"], [5, "dependencies"], [14, "dependencies"], [21, "dependencies"], [26, "dependencies"], [35, "dependencies"], [42, "dependencies"], [44, "dependencies"]], "Dependencies conditional to Python version": [[4, "dependencies-conditional-to-python-version"], [25, "dependencies-conditional-to-python-version"]], "Dependencies in Python packages": [[1, "dependencies-in-python-packages"], [22, "dependencies-in-python-packages"]], "Dependencies on CFFI and greenlet": [[4, "dependencies-on-cffi-and-greenlet"], [25, "dependencies-on-cffi-and-greenlet"]], "Deprecated PEP 517 backends": [[20, "deprecated-pep-517-backends"], [41, "deprecated-pep-517-backends"]], "Deprecated test method alias removal": [[16, "deprecated-test-method-alias-removal"], [37, "deprecated-test-method-alias-removal"]], "Determining whether namespaces are used": [[3, "determining-whether-namespaces-are-used"], [24, "determining-whether-namespaces-are-used"]], "Different build system variations": [[6, "different-build-system-variations"], [27, "different-build-system-variations"]], "Different sets of build-time dependencies": [[8, "different-sets-of-build-time-dependencies"], [29, "different-sets-of-build-time-dependencies"]], "Disabling plugin autoloading": [[19, "disabling-plugin-autoloading"], [40, "disabling-plugin-autoloading"]], "Disjoint build dependencies (any-r1 API)": [[8, "disjoint-build-dependencies-any-r1-api"], [29, "disjoint-build-dependencies-any-r1-api"]], "Documentation files installed by Poetry": [[20, "documentation-files-installed-by-poetry"], [41, "documentation-files-installed-by-poetry"]], "Eclass and profile changes": [[12, "eclass-and-profile-changes"], [12, "id1"], [33, "eclass-and-profile-changes"], [33, "id1"]], "Enabling tests": [[5, "enabling-tests"], [26, "enabling-tests"]], "Example for test packages installed by setuptools": [[20, "example-for-test-packages-installed-by-setuptools"], [41, "example-for-test-packages-installed-by-setuptools"]], "Expert python-r1 usage": [[8, null], [29, null]], "Failures due to missing files in temporary directories": [[19, "failures-due-to-missing-files-in-temporary-directories"], [40, "failures-due-to-missing-files-in-temporary-directories"]], "Fetching wheels": [[18, "fetching-wheels"], [39, "fetching-wheels"]], "Finding dependency lists from build systems": [[1, "finding-dependency-lists-from-build-systems"], [22, "finding-dependency-lists-from-build-systems"]], "Fixing shebangs on installed scripts": [[9, "fixing-shebangs-on-installed-scripts"], [30, "fixing-shebangs-on-installed-scripts"]], "Generator-based coroutine removal (asyncio.coroutine)": [[16, "generator-based-coroutine-removal-asyncio-coroutine"], [37, "generator-based-coroutine-removal-asyncio-coroutine"]], "Gentoo Python Guide": [[10, null], [31, null]], "Hierarchical package structure": [[3, "hierarchical-package-structure"], [24, "hierarchical-package-structure"]], "Hybrid python-r1 + SCons package": [[2, "hybrid-python-r1-scons-package"], [23, "hybrid-python-r1-scons-package"]], "Import-checking packages with no working tests": [[45, "import-checking-packages-with-no-working-tests"]], "ImportErrors for C extensions": [[43, "importerrors-for-c-extensions"], [45, "importerrors-for-c-extensions"]], "ImportPathMismatchError": [[19, "importpathmismatcherror"], [40, "importpathmismatcherror"]], "Improved QA warning reporting in Portage": [[20, "improved-qa-warning-reporting-in-portage"], [41, "improved-qa-warning-reporting-in-portage"]], "In-source vs out-of-source builds": [[6, "in-source-vs-out-of-source-builds"], [27, "in-source-vs-out-of-source-builds"]], "Indices and tables": [[10, "indices-and-tables"], [31, "indices-and-tables"]], "Install helpers": [[9, "install-helpers"], [30, "install-helpers"]], "Installing extra dependencies in test environment (PEP 517 mode)": [[43, "installing-extra-dependencies-in-test-environment-pep-517-mode"], [45, "installing-extra-dependencies-in-test-environment-pep-517-mode"]], "Installing packages manually into BUILD_DIR": [[5, "installing-packages-manually-into-build-dir"], [26, "installing-packages-manually-into-build-dir"]], "Installing packages manually into D": [[5, "installing-packages-manually-into-d"], [26, "installing-packages-manually-into-d"]], "Installing packages without a PEP 517 build backend": [[5, "installing-packages-without-a-pep-517-build-backend"], [26, "installing-packages-without-a-pep-517-build-backend"]], "Installing the package before running tests": [[43, "installing-the-package-before-running-tests"], [45, "installing-the-package-before-running-tests"]], "Installing the package before testing": [[6, "installing-the-package-before-testing"], [27, "installing-the-package-before-testing"]], "Integrating with a non-PEP 517 build system": [[5, "integrating-with-a-non-pep-517-build-system"], [26, "integrating-with-a-non-pep-517-build-system"]], "Integration with build systems written in Python": [[2, null], [23, null]], "Legacy namespace packages in Gentoo": [[3, "legacy-namespace-packages-in-gentoo"], [24, "legacy-namespace-packages-in-gentoo"]], "Life cycle of a Python implementation": [[11, "life-cycle-of-a-python-implementation"], [32, "life-cycle-of-a-python-implementation"]], "Maintenance of Python implementations": [[12, null], [33, null]], "Manual install": [[14, "manual-install"], [35, "manual-install"], [42, "manual-install"], [44, "manual-install"]], "Meson": [[2, "meson"], [23, "meson"]], "Migrating from EAPI 7 to EAPI 8": [[13, "migrating-from-eapi-7-to-eapi-8"], [34, "migrating-from-eapi-7-to-eapi-8"]], "Migrating from old PYTHON_USEDEP syntax in python-single-r1": [[13, "migrating-from-old-python-usedep-syntax-in-python-single-r1"], [34, "migrating-from-old-python-usedep-syntax-in-python-single-r1"]], "Migrating to PEP 517 builds": [[13, "migrating-to-pep-517-builds"], [34, "migrating-to-pep-517-builds"]], "Migration guides": [[13, null], [34, null]], "Missing test files in PyPI packages": [[43, "missing-test-files-in-pypi-packages"], [45, "missing-test-files-in-pypi-packages"]], "Modern and legacy URLs": [[18, "modern-and-legacy-urls"], [39, "modern-and-legacy-urls"]], "Modules are not byte-compiled": [[20, "modules-are-not-byte-compiled"], [41, "modules-are-not-byte-compiled"]], "Monitoring new package versions": [[15, "monitoring-new-package-versions"], [36, "monitoring-new-package-versions"]], "Multiple USE conditions": [[42, "multiple-use-conditions"], [44, "multiple-use-conditions"]], "Multiple sets of conditional dependencies": [[0, "multiple-sets-of-conditional-dependencies"], [21, "multiple-sets-of-conditional-dependencies"]], "Namespace package structure": [[3, "namespace-package-structure"], [24, "namespace-package-structure"]], "Namespace packages": [[3, "namespace-packages"], [24, "namespace-packages"]], "Notes specific to Python interpreters": [[12, "notes-specific-to-python-interpreters"], [33, "notes-specific-to-python-interpreters"]], "Optional test suite dependencies on Rust packages": [[4, "optional-test-suite-dependencies-on-rust-packages"], [25, "optional-test-suite-dependencies-on-rust-packages"]], "Other runtime uses of setuptools": [[6, "other-runtime-uses-of-setuptools"], [27, "other-runtime-uses-of-setuptools"]], "Overview": [[7, "overview"], [28, "overview"]], "PEP 517 build systems": [[5, "pep-517-build-systems"], [26, "pep-517-build-systems"]], "PYTHON_COMPAT": [[1, "python-compat"], [22, "python-compat"]], "PYTHON_DEPS and PYTHON_REQUIRED_USE": [[1, "python-deps-and-python-required-use"], [22, "python-deps-and-python-required-use"]], "Package name policy": [[15, "package-name-policy"], [36, "package-name-policy"]], "Package with a different name": [[18, "package-with-a-different-name"], [39, "package-with-a-different-name"]], "Packages installing extensions (C, Rust\u2026)": [[5, "packages-installing-extensions-c-rust"], [26, "packages-installing-extensions-c-rust"]], "Packages using Cython": [[5, "packages-using-cython"], [26, "packages-using-cython"]], "Packages with Rust extensions (using Cargo)": [[5, "packages-with-rust-extensions-using-cargo"], [26, "packages-with-rust-extensions-using-cargo"]], "Packages with matching name and version": [[18, "packages-with-matching-name-and-version"], [39, "packages-with-matching-name-and-version"]], "Packages with optional Python build system usage": [[5, "packages-with-optional-python-build-system-usage"], [26, "packages-with-optional-python-build-system-usage"]], "Parallel build race conditions": [[5, "parallel-build-race-conditions"], [26, "parallel-build-race-conditions"]], "Partially restricting Python implementation": [[8, "partially-restricting-python-implementation"], [29, "partially-restricting-python-implementation"]], "Passing arguments to setup.py": [[5, "passing-arguments-to-setup-py"], [26, "passing-arguments-to-setup-py"]], "Porting initial packages": [[12, "porting-initial-packages"], [33, "porting-initial-packages"]], "Porting packages to a new EAPI": [[15, "porting-packages-to-a-new-eapi"], [36, "porting-packages-to-a-new-eapi"]], "Porting tips": [[16, null], [37, null]], "Porting to tomli-w": [[16, "porting-to-tomli-w"], [37, "porting-to-tomli-w"]], "Porting to tomllib/tomli with toml fallback": [[16, "porting-to-tomllib-tomli-with-toml-fallback"], [37, "porting-to-tomllib-tomli-with-toml-fallback"]], "Porting to tomllib/tomli without toml fallback": [[16, "porting-to-tomllib-tomli-without-toml-fallback"], [37, "porting-to-tomllib-tomli-without-toml-fallback"]], "Preface": [[17, null], [38, null]], "Preparation": [[12, "preparation"], [33, "preparation"]], "Pure Python autotools package": [[14, "pure-python-autotools-package"], [35, "pure-python-autotools-package"]], "Pure Python multi-impl package": [[2, "pure-python-multi-impl-package"], [23, "pure-python-multi-impl-package"]], "PyPI URLs": [[18, "pypi-urls"], [39, "pypi-urls"]], "PyPI release feeds": [[15, "pypi-release-feeds"], [36, "pypi-release-feeds"]], "PyPy": [[12, "pypy"], [33, "pypy"]], "Python 3.10": [[16, "python-3-10"], [37, "python-3-10"]], "Python 3.11": [[16, "python-3-11"], [37, "python-3-11"]], "Python 3.12": [[16, "python-3-12"], [37, "python-3-12"]], "Python 3.8": [[16, "python-3-8"], [37, "python-3-8"]], "Python 3.9": [[16, "python-3-9"], [37, "python-3-9"]], "Python build system bootstrap": [[12, "python-build-system-bootstrap"], [33, "python-build-system-bootstrap"]], "Python environment": [[1, "python-environment"], [22, "python-environment"]], "Python interpreters": [[11, null], [32, null]], "Python package maintenance": [[15, null], [36, null]], "Python-first packages (distutils-r1 eclass)": [[7, "python-first-packages-distutils-r1-eclass"], [28, "python-first-packages-distutils-r1-eclass"]], "QA checks and warnings": [[20, null], [41, null]], "Querying the implementation information": [[9, "querying-the-implementation-information"], [30, "querying-the-implementation-information"]], "Removing a Python implementation": [[12, "removing-a-python-implementation"], [33, "removing-a-python-implementation"]], "Replacing the toml package": [[16, "replacing-the-toml-package"], [37, "replacing-the-toml-package"]], "Repology": [[15, "repology"], [36, "repology"]], "Requesting USE flags on the Python interpreter": [[4, "requesting-use-flags-on-the-python-interpreter"], [25, "requesting-use-flags-on-the-python-interpreter"]], "Restricting interpreters for python_setup": [[8, "restricting-interpreters-for-python-setup"], [29, "restricting-interpreters-for-python-setup"]], "Retroactive changes": [[16, "retroactive-changes"], [37, "retroactive-changes"]], "Routine checks on installed Python packages": [[15, "routine-checks-on-installed-python-packages"], [36, "routine-checks-on-installed-python-packages"]], "Running tests with virtualx": [[43, "running-tests-with-virtualx"], [45, "running-tests-with-virtualx"]], "SCons": [[2, "scons"], [23, "scons"]], "Setuptools\u2019 entry points": [[6, "setuptools-entry-points"], [27, "setuptools-entry-points"]], "Single-impl package": [[2, "single-impl-package"], [2, "id1"], [23, "single-impl-package"], [23, "id1"]], "Single-impl package with conditional Python install": [[2, "single-impl-package-with-conditional-python-install"], [23, "single-impl-package-with-conditional-python-install"]], "Single-impl vs multi-impl": [[7, "single-impl-vs-multi-impl"], [28, "single-impl-vs-multi-impl"]], "Skipping problematic tests": [[43, "skipping-problematic-tests"], [45, "skipping-problematic-tests"]], "Skipping tests based on markers": [[19, "skipping-tests-based-on-markers"], [40, "skipping-tests-based-on-markers"]], "Skipping tests based on paths/names": [[19, "skipping-tests-based-on-paths-names"], [40, "skipping-tests-based-on-paths-names"]], "Source archives": [[5, "source-archives"], [26, "source-archives"]], "Source distribution filenames": [[18, "source-distribution-filenames"], [39, "source-distribution-filenames"]], "Sphinx without autodoc or extensions": [[5, "sphinx-without-autodoc-or-extensions"], [26, "sphinx-without-autodoc-or-extensions"]], "Stability guarantees of Python implementations": [[11, "stability-guarantees-of-python-implementations"], [32, "stability-guarantees-of-python-implementations"]], "Stray compiled bytecode": [[20, "stray-compiled-bytecode"], [41, "stray-compiled-bytecode"]], "Stray top-level files in site-packages": [[20, "stray-top-level-files-in-site-packages"], [41, "stray-top-level-files-in-site-packages"]], "Sub-phase functions": [[5, "sub-phase-functions"], [26, "sub-phase-functions"]], "Support for Python 2": [[15, "support-for-python-2"], [36, "support-for-python-2"]], "Support for multiple implementations": [[11, "support-for-multiple-implementations"], [32, "support-for-multiple-implementations"]], "Tests aborting (due to assertions)": [[43, "tests-aborting-due-to-assertions"], [45, "tests-aborting-due-to-assertions"]], "Tests in Python packages": [[43, null], [45, null]], "Tests requiring Internet access": [[43, "tests-requiring-internet-access"], [45, "tests-requiring-internet-access"]], "The PEP 517 and legacy modes": [[5, "the-pep-517-and-legacy-modes"], [26, "the-pep-517-and-legacy-modes"]], "The most common dependency types": [[1, "the-most-common-dependency-types"], [22, "the-most-common-dependency-types"]], "TypeError: _make_test_flaky() got an unexpected keyword argument \u2018reruns\u2019": [[19, "typeerror-make-test-flaky-got-an-unexpected-keyword-argument-reruns"], [40, "typeerror-make-test-flaky-got-an-unexpected-keyword-argument-reruns"]], "Undesirable test dependencies": [[43, "undesirable-test-dependencies"], [45, "undesirable-test-dependencies"]], "Using any-r1 API with distutils-r1": [[8, "using-any-r1-api-with-distutils-r1"], [29, "using-any-r1-api-with-distutils-r1"]], "Using any-r1 API with python-r1": [[8, "using-any-r1-api-with-python-r1"], [29, "using-any-r1-api-with-python-r1"]], "Using distutils_enable_tests": [[43, "using-distutils-enable-tests"], [45, "using-distutils-enable-tests"]], "Using pytest-timeout to prevent deadlocks (hangs)": [[19, "using-pytest-timeout-to-prevent-deadlocks-hangs"], [40, "using-pytest-timeout-to-prevent-deadlocks-hangs"]], "Using pytest-xdist to run tests in parallel": [[19, "using-pytest-xdist-to-run-tests-in-parallel"], [40, "using-pytest-xdist-to-run-tests-in-parallel"]], "Using regular python-r1 API": [[8, "using-regular-python-r1-api"], [29, "using-regular-python-r1-api"]], "Versions of Python": [[11, "versions-of-python"], [32, "versions-of-python"]], "Warnings": [[19, "warnings"], [40, "warnings"]], "Which implementations to test new packages for?": [[15, "which-implementations-to-test-new-packages-for"], [36, "which-implementations-to-test-new-packages-for"]], "Which packages can be (co-)maintained by the Python project?": [[15, "which-packages-can-be-co-maintained-by-the-python-project"], [36, "which-packages-can-be-co-maintained-by-the-python-project"]], "Why is running tests important?": [[43, "why-is-running-tests-important"], [45, "why-is-running-tests-important"]], "base64.encodestring / base64.decodestring removal": [[16, "base64-encodestring-base64-decodestring-removal"], [37, "base64-encodestring-base64-decodestring-removal"]], "bpo43882: urlsplit now strips LF, CR and HT characters": [[16, "bpo43882-urlsplit-now-strips-lf-cr-and-ht-characters"], [37, "bpo43882-urlsplit-now-strips-lf-cr-and-ht-characters"]], "configure: No package \u2018python-3.1\u2019 found": [[16, "configure-no-package-python-3-1-found"], [37, "configure-no-package-python-3-1-found"]], "distutils and setuptools build systems": [[6, "distutils-and-setuptools-build-systems"], [27, "distutils-and-setuptools-build-systems"]], "distutils-r1 legacy concepts": [[6, null], [27, null]], "distutils-r1 \u2014 standard Python build systems": [[5, null], [26, null]], "distutils.sysconfig deprecation": [[16, "distutils-sysconfig-deprecation"], [37, "distutils-sysconfig-deprecation"]], "fixture \u2018\u2026\u2019 not found": [[19, "fixture-not-found"], [40, "fixture-not-found"]], "flit.buildapi": [[20, "flit-buildapi"], [41, "flit-buildapi"]], "gpy-verify-deps": [[15, "gpy-verify-deps"], [36, "gpy-verify-deps"]], "inspect.getargspec() and inspect.formatargspec() removal": [[16, "inspect-getargspec-and-inspect-formatargspec-removal"], [37, "inspect-getargspec-and-inspect-formatargspec-removal"]], "pip check": [[15, "pip-check"], [36, "pip-check"]], "pip list --outdated": [[15, "pip-list-outdated"], [36, "pip-list-outdated"]], "poetry.masonry.api": [[20, "poetry-masonry-api"], [41, "poetry-masonry-api"]], "pypi \u2014 helper eclass for PyPI archives": [[18, null], [39, null]], "pyproject.toml-based projects": [[6, "pyproject-toml-based-projects"], [27, "pyproject-toml-based-projects"]], "pytest recipes": [[19, null], [40, null]], "python-any-r1 \u2014 build-time dependency": [[0, null], [21, null]], "python-config and pkg-config no longer list Python library by default": [[16, "python-config-and-pkg-config-no-longer-list-python-library-by-default"], [37, "python-config-and-pkg-config-no-longer-list-python-library-by-default"]], "python-r1 \u2014 multi-impl packages": [[14, null], [35, null]], "python-single-r1 variant": [[5, "python-single-r1-variant"], [26, "python-single-r1-variant"]], "python-single-r1 \u2014 single-impl packages": [[42, null], [44, null]], "python_compile": [[5, "python-compile"], [26, "python-compile"]], "python_configure": [[5, "python-configure"], [26, "python-configure"]], "python_install": [[5, "python-install"], [26, "python-install"]], "python_prepare": [[5, "python-prepare"], [26, "python-prepare"]], "python_test": [[5, "python-test"], [26, "python-test"]], "setuptools.build_meta:__legacy__": [[20, "setuptools-build-meta-legacy"], [41, "setuptools-build-meta-legacy"]], "setuptools_scm (flit_scm, hatch-vcs, pdm-backend) and snapshots": [[5, "setuptools-scm-flit-scm-hatch-vcs-pdm-backend-and-snapshots"], [26, "setuptools-scm-flit-scm-hatch-vcs-pdm-backend-and-snapshots"]], "waf": [[2, "waf"], [23, "waf"]]}, "docnames": ["any", "basic", "buildsys", "concept", "depend", "distutils", "distutils-legacy", "eclass", "expert-multi", "helper", "index", "interpreter", "interpreter-maintenance", "migration", "multi", "package-maintenance", "porting", "preface", "pypi", "pytest", "qawarn", "rst/any", "rst/basic", "rst/buildsys", "rst/concept", "rst/depend", "rst/distutils", "rst/distutils-legacy", "rst/eclass", "rst/expert-multi", "rst/helper", "rst/index", "rst/interpreter", "rst/interpreter-maintenance", "rst/migration", "rst/multi", "rst/package-maintenance", "rst/porting", "rst/preface", "rst/pypi", "rst/pytest", "rst/qawarn", "rst/single", "rst/test", "single", "test"], "envversion": {"sphinx": 62, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2}, "filenames": ["any.rst", "basic.rst", "buildsys.rst", "concept.rst", "depend.rst", "distutils.rst", "distutils-legacy.rst", "eclass.rst", "expert-multi.rst", "helper.rst", "index.rst", "interpreter.rst", "interpreter-maintenance.rst", "migration.rst", "multi.rst", "package-maintenance.rst", "porting.rst", "preface.rst", "pypi.rst", "pytest.rst", "qawarn.rst", "rst/any.rst", "rst/basic.rst", "rst/buildsys.rst", "rst/concept.rst", "rst/depend.rst", "rst/distutils.rst", "rst/distutils-legacy.rst", "rst/eclass.rst", "rst/expert-multi.rst", "rst/helper.rst", "rst/index.rst", "rst/interpreter.rst", "rst/interpreter-maintenance.rst", "rst/migration.rst", "rst/multi.rst", "rst/package-maintenance.rst", "rst/porting.rst", "rst/preface.rst", "rst/pypi.rst", "rst/pytest.rst", "rst/qawarn.rst", "rst/single.rst", "rst/test.rst", "single.rst", "test.rst"], "indexentries": {"distutils_enable_tests": [[45, "index-0", false]], "epytest": [[45, "index-1", false]], "virtx": [[45, "index-2", false]]}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [1, 2, 4, 5, 6, 7, 8, 9, 13, 14, 15, 16, 18, 19, 20, 22, 23, 25, 26, 27, 28, 29, 30, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "0": [0, 2, 4, 5, 6, 8, 10, 11, 12, 14, 15, 16, 19, 20, 21, 23, 25, 26, 27, 29, 31, 32, 33, 35, 36, 37, 40, 41, 42, 43, 44, 45], "01": [19, 40], "05": [19, 40], "0x00007f748bc47740": [43, 45], "0x00007fb5db746740": [43, 45], "0x03000000": [43, 45], "0x03030000": [11, 32], "1": [0, 2, 3, 4, 5, 6, 8, 9, 15, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 30, 36, 39, 40, 41, 42, 43, 44, 45], "10": [1, 4, 5, 8, 10, 11, 12, 15, 19, 20, 22, 25, 26, 29, 31, 32, 33, 36, 40, 41], "100": [12, 33], "10000": [2, 23], "1014": [43, 45], "10_p3": [16, 37], "11": [2, 5, 10, 12, 15, 23, 26, 31, 33, 36, 43, 45], "110": [5, 26], "117": [43, 45], "119": [43, 45], "12": [2, 8, 10, 15, 19, 20, 23, 29, 31, 36, 40, 41], "127": [43, 45], "13": [5, 15, 18, 19, 26, 36, 39, 40, 43, 45], "131": [5, 26], "135": [19, 40], "13_p3": [16, 37], "14": [8, 29, 43, 45], "141": [15, 36], "143": [5, 26], "14349": [16, 37], "148": [5, 26], "15": [15, 36], "16": [16, 37], "17": [8, 29], "170": [43, 45], "18": [8, 29], "180": [43, 45], "1800": [19, 40], "187": [43, 45], "18_p9": [16, 37], "193": [43, 45], "1999": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "2": [0, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 29, 30, 31, 32, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45], "20": [12, 18, 33, 39], "20120407": [2, 8, 23, 29], "2017": [8, 29], "2020": [0, 2, 4, 5, 6, 8, 13, 14, 16, 21, 23, 25, 26, 27, 29, 34, 35, 37, 42, 43, 44, 45], "2022": [5, 13, 19, 26, 34, 40], "2023": [5, 26], "2024": [19, 40], "208": [0, 21], "23": [15, 36, 43, 45], "234": [43, 45], "24": [2, 8, 19, 23, 29, 40, 43, 45], "25": [43, 45], "26": [8, 29], "27": [2, 8, 23, 29], "28": [15, 36], "29": [5, 26], "292": [5, 26], "2934": [43, 45], "2_7": [4, 25, 43, 45], "2_pkg_setup": [2, 23], "2d": [14, 35], "2e": [18, 39], "2to3": [6, 27], "3": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45], "30": [5, 11, 19, 26, 32, 40], "31": [2, 15, 23, 36], "310": [20, 41], "34": [43, 45], "35": [20, 41], "36": [20, 41], "360": [2, 23], "36e46173a288c1c40853ffdb712c67e0e022df0e1ce50b7b1b50066b74d4": [18, 39], "38": [5, 20, 26, 41], "3_": [4, 25], "3_6": [14, 35, 43, 45], "3_7": [14, 35, 43, 45], "3_8": [43, 45], "3_p30": [0, 21], "4": [0, 3, 5, 8, 9, 10, 11, 12, 14, 15, 21, 24, 26, 29, 30, 31, 32, 33, 35, 36, 43, 45], "40": [12, 20, 33, 41], "42": [2, 23], "420": [3, 24], "423": [15, 36], "425": [5, 26], "427": [18, 39], "440": [18, 39], "48": [5, 26], "492": [16, 37], "4_p1": [16, 37], "5": [0, 2, 5, 7, 8, 9, 11, 14, 15, 16, 18, 19, 21, 23, 26, 28, 29, 30, 32, 35, 36, 37, 39, 40, 42, 43, 44, 45], "503": [15, 36], "517": [1, 3, 6, 7, 10, 12, 22, 24, 27, 28, 31, 33], "524": [43, 45], "54": [43, 45], "577": [19, 40], "578": [43, 45], "583": [19, 40], "59": [15, 36], "596": [43, 45], "5a": [43, 45], "6": [0, 1, 2, 4, 5, 6, 8, 11, 12, 14, 15, 16, 19, 21, 22, 23, 25, 26, 27, 29, 32, 33, 35, 36, 37, 40, 42, 43, 44, 45], "60": [15, 36], "62": [15, 36], "621": [1, 22], "625": [18, 39], "655482": [0, 21], "66": [43, 45], "671": [43, 45], "6e5e8a57628095d8d0c8bbb38187afb0f3a42112": [2, 23], "7": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "70": [2, 23], "717": [5, 26], "73": [43, 45], "74": [43, 45], "7m": [16, 37], "8": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 15, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 36, 41, 42, 43, 44, 45], "80": [43, 45], "85": [43, 45], "87": [43, 45], "9": [2, 5, 10, 12, 15, 18, 20, 23, 26, 31, 33, 36, 39, 41, 43, 45], "90": [2, 14, 23, 35], "93f52f6d4f70f4e18dc71deeaae0ec1e9100a50f": [16, 37], "975": [43, 45], "991": [43, 45], "9_p2": [16, 37], "A": [0, 1, 2, 4, 6, 7, 8, 10, 11, 15, 19, 20, 21, 22, 23, 25, 27, 28, 29, 31, 32, 36, 40, 41], "As": [1, 3, 5, 6, 7, 8, 11, 12, 13, 15, 16, 19, 22, 24, 26, 27, 28, 29, 32, 33, 34, 36, 37, 40, 42, 43, 44, 45], "At": [2, 5, 11, 15, 17, 20, 23, 26, 32, 36, 38, 41], "But": [43, 45], "By": [5, 6, 11, 19, 26, 27, 32, 40], "For": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 43, 45], "If": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "In": [0, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "It": [0, 1, 3, 4, 5, 6, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "Its": [7, 12, 18, 28, 33, 39], "No": [3, 24, 43, 45], "Not": [19, 40, 43, 45], "On": [11, 32], "One": [16, 37, 43, 45], "That": [2, 16, 23, 37, 43, 45], "The": [0, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "Their": [6, 9, 20, 27, 30, 41], "Then": [12, 33], "There": [1, 3, 5, 8, 9, 15, 16, 19, 20, 22, 24, 26, 29, 30, 36, 37, 40, 41, 43, 45], "These": [1, 5, 6, 7, 11, 12, 13, 15, 19, 22, 26, 27, 28, 32, 33, 34, 36, 40, 43, 45], "To": [5, 6, 8, 9, 12, 15, 16, 19, 20, 26, 27, 29, 30, 33, 36, 37, 40, 41, 42, 44], "With": [6, 27, 43, 45], "_": [5, 12, 15, 18, 26, 33, 36, 39, 43, 45], "____________________": [43, 45], "_____________________": [19, 40], "______________________": [19, 40], "__dict__": [43, 45], "__import__": [3, 24], "__init__": [1, 3, 5, 9, 19, 20, 22, 24, 26, 30, 40, 41, 43, 45], "__legacy__": [5, 26], "__main__": [5, 26, 43, 45], "__name__": [3, 24], "__path__": [3, 24], "__pycache__": [20, 41], "_all": [5, 8, 26, 29], "_alpha": [18, 39], "_beta": [18, 39], "_bootstrap": [43, 45], "_distribut": [5, 26], "_do_pars": [5, 26], "_feedparser_sgmllib": [9, 30], "_find_and_load": [43, 45], "_find_and_load_unlock": [43, 45], "_gcd_import": [43, 45], "_get_vers": [5, 26], "_hashtabl": [5, 26], "_importtestmodul": [43, 45], "_install_setup_requir": [5, 26], "_lib": [5, 26], "_load_unlock": [43, 45], "_make_test_flaki": [10, 31], "_multical": [43, 45], "_overridesdir": [14, 35], "_p": [18, 39], "_pytest": [19, 40, 43, 45], "_python_all_impl": [12, 33], "_python_historical_impl": [12, 33], "_python_impl_match": [12, 33], "_python_set_impl": [12, 33], "_python_verify_pattern": [12, 33], "_rc": [2, 18, 23, 39], "_run_cod": [43, 45], "_run_module_as_main": [43, 45], "_rust": [5, 26], "_tslib": [5, 26], "abi": [11, 18, 32, 39], "abil": [5, 6, 26, 27], "abitag": [18, 39], "abl": [3, 15, 24, 36], "abort": [10, 31], "about": [3, 5, 6, 13, 15, 16, 24, 26, 27, 34, 36, 37, 43, 45], "abov": [0, 1, 6, 8, 12, 13, 15, 19, 20, 21, 22, 27, 29, 33, 34, 36, 40, 41, 42, 43, 44, 45], "absolut": [0, 1, 9, 15, 21, 22, 30, 36, 42, 43, 44, 45], "abstract": [7, 14, 18, 28, 35, 39], "accept": [0, 1, 4, 5, 6, 9, 12, 15, 16, 18, 19, 20, 21, 22, 25, 26, 27, 30, 33, 36, 37, 39, 40, 41], "access": [0, 10, 11, 19, 21, 31, 32, 40], "accompani": [11, 32], "accord": [8, 18, 29, 39], "account": [2, 8, 11, 15, 23, 29, 32, 36, 43, 45], "acct": [2, 23], "achiev": [0, 8, 11, 16, 21, 29, 32, 37], "across": [5, 11, 26, 32, 43, 45], "act": [3, 24], "action": [3, 15, 24, 36, 43, 45], "activ": [8, 17, 29, 38], "actual": [1, 5, 6, 8, 9, 11, 12, 15, 16, 18, 19, 22, 26, 27, 29, 30, 32, 33, 36, 37, 39, 40, 43, 45], "ad": [1, 5, 7, 10, 11, 13, 14, 19, 22, 26, 28, 31, 32, 34, 35, 40], "adapt": [18, 39], "add": [1, 2, 5, 6, 8, 12, 15, 18, 19, 20, 22, 23, 26, 27, 29, 33, 36, 39, 40, 41, 42, 43, 44, 45], "addit": [1, 2, 4, 6, 8, 9, 10, 11, 12, 13, 15, 18, 19, 22, 23, 25, 27, 29, 30, 31, 32, 33, 34, 36, 39, 40, 43, 45], "addition": [5, 9, 11, 14, 26, 30, 32, 35], "addnod": [3, 24], "addopt": [5, 26], "address": [6, 11, 16, 27, 32, 37], "adishatz": [4, 25], "adjust": [4, 9, 11, 16, 25, 30, 32, 37], "admin": [2, 8, 23, 29], "advanc": [10, 31], "advantag": [4, 5, 7, 19, 25, 26, 28, 40, 43, 45], "advis": [43, 45], "affect": [9, 11, 14, 18, 30, 32, 35, 39], "aforement": [7, 13, 16, 18, 28, 34, 37, 39], "after": [3, 6, 9, 11, 12, 13, 15, 16, 18, 19, 20, 24, 27, 30, 32, 33, 34, 36, 37, 39, 40, 41, 43, 45], "afterward": [11, 14, 15, 32, 35, 36, 43, 45], "again": [1, 2, 15, 22, 23, 36, 43, 45], "against": [0, 4, 7, 9, 11, 12, 14, 15, 19, 21, 25, 28, 30, 32, 33, 35, 36, 40, 42, 43, 44, 45], "agnost": [2, 23], "aid": [18, 39], "aim": [5, 11, 15, 17, 20, 26, 32, 36, 38, 41], "aiohttp": [5, 19, 26, 40], "alabast": [5, 6, 26, 27], "alias": [5, 16, 26, 37], "alik": [6, 7, 11, 13, 27, 28, 32, 34], "all": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "allow": [7, 28, 43, 45], "allow_test": [43, 45], "alon": [11, 32], "along": [2, 5, 6, 7, 11, 12, 13, 20, 23, 26, 27, 28, 32, 33, 34, 41, 42, 43, 44, 45], "alongsid": [5, 6, 26, 27], "alpha": [0, 2, 4, 5, 6, 8, 11, 12, 14, 21, 23, 25, 26, 27, 29, 32, 33, 35, 42, 43, 44, 45], "alphanumer": [18, 39], "alreadi": [9, 12, 14, 15, 16, 20, 30, 33, 35, 36, 37, 41, 43, 45], "also": [0, 1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 43, 45], "alter": [5, 19, 26, 40], "altern": [3, 5, 6, 8, 10, 16, 17, 18, 24, 26, 27, 29, 31, 37, 38, 39, 43, 45], "altogeth": [43, 45], "alwai": [5, 6, 8, 11, 13, 16, 17, 18, 19, 20, 26, 27, 29, 32, 34, 37, 38, 39, 40, 41], "am": [14, 35], "amd64": [0, 2, 4, 5, 6, 8, 12, 14, 21, 23, 25, 26, 27, 29, 33, 35, 42, 43, 44, 45], "among": [5, 17, 26, 38], "amount": [11, 12, 32, 33, 43, 45], "an": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 39, 41, 42, 43, 44, 45], "analysi": [2, 23, 42, 44], "ani": [1, 2, 3, 5, 6, 7, 10, 14, 16, 18, 19, 20, 22, 23, 24, 26, 27, 28, 31, 35, 37, 39, 40, 41, 43, 45], "annot": [16, 37], "announc": [12, 33], "anoth": [0, 8, 9, 14, 15, 16, 18, 19, 20, 21, 29, 30, 35, 36, 37, 39, 40, 41, 43, 45], "anticip": [15, 36], "anymor": [8, 11, 29, 32], "anyth": [9, 16, 30, 37], "anywai": [5, 16, 26, 37], "apach": [0, 2, 4, 5, 8, 21, 23, 25, 26, 29, 43, 45], "apb": [2, 23], "api": [0, 2, 5, 9, 10, 11, 13, 14, 16, 21, 23, 26, 30, 31, 32, 34, 35, 37], "app": [0, 2, 4, 5, 8, 12, 14, 15, 18, 20, 21, 23, 25, 26, 29, 33, 35, 36, 39, 41, 43, 45], "appeas": [43, 45], "append": [5, 14, 15, 18, 26, 35, 36, 39, 43, 45], "appli": [1, 4, 5, 6, 7, 12, 15, 19, 20, 22, 25, 26, 27, 28, 33, 36, 40, 41, 42, 43, 44, 45], "applic": [2, 9, 11, 23, 30, 32], "approach": [1, 5, 7, 8, 12, 16, 19, 22, 26, 28, 29, 33, 37, 40, 43, 45], "appropri": [0, 2, 4, 5, 6, 7, 9, 11, 12, 15, 18, 19, 21, 23, 25, 26, 27, 28, 30, 32, 33, 36, 39, 40, 42, 43, 44, 45], "ar": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 45], "arab": [42, 44], "arabey": [42, 44], "arabic2tran": [42, 44], "arbitrari": [2, 13, 18, 23, 34, 39, 43, 45], "arch": [2, 5, 8, 11, 12, 18, 19, 23, 26, 29, 32, 33, 39, 40], "architectur": [4, 11, 25, 32], "archiv": [0, 2, 4, 10, 21, 23, 25, 31, 42, 43, 44, 45], "area": [43, 45], "arg": [16, 37], "argcomplet": [43, 45], "argpars": [43, 45], "argspec": [16, 37], "argument": [4, 6, 10, 13, 16, 25, 27, 31, 34, 37, 43, 45], "aris": [43, 45], "arm": [0, 2, 4, 5, 6, 8, 21, 23, 25, 26, 27, 29, 42, 43, 44, 45], "arm64": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "around": [3, 5, 6, 11, 12, 19, 24, 26, 27, 32, 33, 40, 43, 45], "arrai": [5, 26], "artifact": [20, 41], "asgiref": [19, 40], "asgitest": [19, 40], "ask": [11, 15, 32, 36], "asn1": [5, 26], "asn1_der": [5, 26], "assert": [5, 10, 20, 26, 31, 41], "assert_called_with": [16, 37], "assertequ": [16, 37], "assertregexpmatch": [16, 37], "assign": [1, 19, 22], "assum": [0, 1, 4, 5, 6, 9, 13, 15, 21, 22, 25, 26, 27, 30, 34, 36, 42, 43, 44, 45], "assumpt": [5, 26], "async": [16, 19, 37, 40], "asyncio": [11, 19, 32, 40, 43, 45], "attempt": [16, 20, 37, 41, 43, 45], "attr": [5, 12, 26, 33, 43, 45], "attribut": [3, 10, 16, 24, 31, 37], "attributeerror": [16, 37], "author": [0, 2, 4, 5, 6, 8, 9, 10, 12, 14, 20, 21, 23, 25, 26, 27, 29, 30, 31, 33, 35, 41, 42, 43, 44, 45], "autoload": [10, 31], "autom": [2, 23], "automak": [16, 37], "automat": [3, 4, 5, 6, 12, 15, 18, 19, 20, 24, 25, 26, 27, 33, 36, 39, 40, 41, 43, 45], "autoreconf": [16, 37], "autotool": [0, 5, 6, 10, 16, 21, 26, 27, 31, 37, 42, 44], "auxiliari": [20, 41], "avail": [4, 5, 6, 8, 11, 13, 15, 16, 17, 25, 26, 27, 29, 32, 34, 36, 37, 38], "avoid": [5, 6, 8, 10, 15, 16, 17, 26, 27, 29, 31, 36, 37, 38, 43, 45], "awai": [6, 7, 18, 27, 28, 39], "await": [16, 37], "b": [0, 18, 21, 39], "b64_encodebyt": [16, 37], "b64decod": [16, 37], "b64encod": [16, 37], "babel": [15, 36], "babelex": [18, 39], "back": [3, 6, 16, 24, 27, 37, 43, 45], "backend": [4, 10, 12, 13, 25, 31, 33, 34], "backport": [4, 6, 10, 12, 25, 27, 31, 33], "backtrac": [43, 45], "backward": [5, 11, 16, 26, 32, 37], "bad": [9, 16, 30, 37], "badurl": [16, 37], "ban": [13, 34], "bar": [16, 37], "base": [1, 4, 5, 7, 8, 10, 12, 14, 15, 22, 25, 26, 28, 29, 31, 33, 35, 36, 42, 43, 44, 45], "baselin": [12, 19, 33, 40], "basemap": [42, 44], "basenam": [1, 22], "bash": [0, 5, 7, 8, 9, 21, 26, 28, 29, 30, 42, 43, 44, 45], "basi": [7, 28], "basic": [9, 10, 30, 31], "batch": [12, 20, 33, 41], "bdepend": [0, 1, 2, 4, 5, 6, 8, 12, 14, 19, 21, 22, 23, 25, 26, 27, 29, 33, 35, 40, 42, 43, 44, 45], "bear": [15, 36], "becam": [4, 11, 25, 32], "becaus": [2, 6, 11, 12, 15, 19, 20, 23, 27, 32, 33, 36, 40, 41, 43, 45], "becom": [11, 16, 19, 32, 37, 40], "been": [3, 5, 6, 8, 11, 12, 13, 14, 16, 19, 20, 24, 26, 27, 29, 32, 33, 34, 35, 37, 40, 41], "befor": [1, 4, 5, 8, 9, 10, 12, 14, 16, 22, 25, 26, 29, 30, 31, 33, 35, 37], "beforehand": [5, 26], "beginn": [17, 38], "behav": [5, 8, 26, 29], "behavior": [8, 11, 16, 18, 19, 29, 32, 37, 39, 40], "being": [1, 3, 5, 6, 8, 9, 11, 12, 15, 16, 18, 19, 22, 24, 26, 27, 29, 30, 32, 33, 36, 37, 39, 40, 43, 45], "beings": [8, 29], "belong": [1, 22, 43, 45], "below": [5, 8, 26, 29], "benefit": [5, 7, 26, 28], "besid": [2, 6, 11, 14, 20, 23, 27, 32, 35, 41], "best": [0, 7, 12, 16, 17, 18, 21, 28, 33, 37, 38, 39], "beta": [11, 12, 32, 33], "better": [3, 6, 11, 12, 13, 14, 20, 24, 27, 32, 33, 34, 35, 41], "between": [1, 3, 5, 8, 10, 11, 13, 16, 18, 22, 24, 26, 29, 31, 32, 34, 37, 39], "bewar": [43, 45], "beyond": [17, 38], "bidirect": [11, 32], "big": [8, 29], "bin": [1, 2, 5, 7, 8, 9, 12, 22, 23, 26, 28, 29, 30, 33, 42, 43, 44, 45], "binari": [5, 9, 12, 16, 26, 30, 33, 37], "bind": [0, 2, 5, 8, 14, 21, 23, 26, 29, 35, 42, 44], "bindir": [8, 29], "binpkg": [12, 33], "bison": [8, 29], "bit": [1, 12, 17, 22, 33, 38], "bitprophet": [6, 27], "black": [4, 25], "bleach": [43, 45], "blender_boolean": [20, 41], "block": [0, 8, 13, 19, 21, 29, 34, 40, 43, 45], "blueman": [20, 41], "bmrblib": [2, 23], "boltzmann": [2, 23], "boolean": [5, 16, 26, 37], "boost": [2, 7, 23, 28], "bootstrap": [5, 6, 10, 26, 27, 31], "both": [0, 1, 3, 4, 5, 6, 7, 8, 12, 13, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45], "bottom": [43, 45], "bound": [3, 11, 16, 24, 32, 37], "box": [11, 13, 32, 34], "branch": [0, 11, 16, 21, 32, 37, 43, 45], "break": [11, 15, 16, 32, 36, 37], "breakag": [5, 26, 43, 45], "broken": [5, 6, 19, 26, 27, 40, 43, 45], "brython": [11, 32], "bsd": [0, 2, 5, 6, 8, 14, 21, 23, 26, 27, 29, 35, 42, 44], "bu": [0, 21], "bug": [0, 5, 6, 12, 20, 21, 26, 27, 33, 41, 43, 45], "bugfix": [11, 32], "buggi": [14, 35], "bugzilla": [15, 36], "build": [3, 9, 10, 11, 15, 16, 18, 20, 24, 30, 31, 32, 36, 37, 39, 41, 43, 45], "build_api": [5, 26], "build_config": [2, 23], "build_dir": [2, 3, 9, 14, 23, 24, 30, 35, 43, 45], "build_ext": [5, 6, 26, 27, 43, 45], "build_meta": [5, 26], "build_pdb2pka": [2, 23], "buildapi": [5, 26], "builder": [15, 36], "buildscript": [2, 23], "buildtool": [2, 23, 42, 44], "built": [0, 1, 3, 5, 6, 7, 8, 11, 12, 14, 16, 17, 18, 21, 22, 24, 26, 27, 28, 29, 32, 33, 35, 37, 38, 39, 42, 43, 44, 45], "builtin": [2, 23], "bump": [5, 12, 15, 18, 26, 33, 36, 39], "bundl": [2, 5, 12, 23, 26, 33], "busi": [19, 40], "bypass": [1, 22], "byroot": [16, 37], "byte": [10, 16, 31, 37], "byte_compil": [9, 30], "bytecod": [10, 31], "bz2": [2, 8, 23, 29, 42, 44], "bzip2": [8, 29], "c": [1, 2, 6, 8, 9, 10, 11, 14, 22, 23, 27, 29, 30, 31, 32, 35], "c0459b92bc4a42b08281e69b8802d24c5d3415d4": [18, 39], "cach": [14, 35], "cachedir": [43, 45], "cairo": [14, 35], "calcul": [2, 23], "call": [0, 1, 2, 3, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 27, 28, 29, 30, 31, 32, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "callabl": [16, 37], "caller": [43, 45], "can": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "cangjian": [14, 35], "cannot": [2, 3, 4, 5, 9, 11, 23, 24, 25, 26, 30, 32, 43, 45], "canon": [15, 18, 36, 39], "cantera": [2, 23], "canva": [14, 35], "capabl": [0, 21], "captur": [19, 40, 43, 45], "care": [1, 2, 5, 7, 9, 15, 22, 23, 26, 28, 30, 36, 43, 45], "cargo": [10, 31], "cargo_crate_uri": [5, 26], "cargo_opt": [5, 26], "cargo_src_test": 5, "cargo_src_unpack": [5, 26], "carri": [15, 16, 36, 37], "case": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 44], "cat": [2, 5, 23, 26], "catch": [20, 41, 43, 45], "categori": [1, 15, 22, 36], "caus": [1, 4, 5, 8, 9, 13, 15, 18, 19, 20, 22, 25, 26, 29, 30, 34, 36, 39, 40, 41, 43, 45], "caution": [43, 45], "cc": [2, 9, 23, 30], "cc_flag": [2, 23], "cd": [2, 5, 9, 12, 23, 26, 30, 33, 43, 45], "ceas": 43, "certifi": [8, 15, 29, 36], "cf": [5, 12, 26, 33], "cffi": [10, 31], "cfg": [1, 3, 5, 6, 15, 19, 20, 22, 24, 26, 27, 36, 40, 41, 43, 45], "cflag": [5, 9, 26, 30, 43, 45], "cgit": [0, 21], "chain": [0, 21], "chanc": [19, 40], "chang": [5, 6, 8, 9, 10, 11, 13, 14, 15, 18, 20, 26, 27, 29, 30, 31, 32, 34, 35, 36, 39, 41, 43, 45], "changelog": [20, 41], "chapter": [2, 5, 8, 9, 23, 26, 29, 30], "charact": [15, 18, 36, 39], "chardet": [8, 29, 43, 45], "cheap": [1, 22], "check": [0, 5, 6, 9, 10, 12, 13, 16, 17, 21, 26, 27, 30, 31, 33, 34, 37, 38, 43], "checklist": [10, 31], "checkout": [5, 12, 26, 33, 43, 45], "cheetah3": [2, 23], "chemic": [2, 23], "chemistri": [2, 23], "cherri": [12, 33], "chewi": [2, 23], "choic": [2, 6, 7, 13, 18, 23, 27, 28, 34, 39, 43, 45], "choos": [10, 11, 14, 19, 31, 32, 35, 40], "chose": [13, 34], "chosen": [12, 33], "chrpath": [2, 8, 23, 29], "ci": [5, 26, 43, 45], "cinnamon": [0, 21], "circular": [12, 33], "class": [0, 1, 5, 16, 19, 21, 22, 26, 37, 40], "classifi": [1, 6, 22, 27], "clean": [6, 11, 13, 27, 32, 34], "cleanli": [6, 12, 27, 33], "cleanup": [13, 34], "clear": [11, 15, 32, 36], "clearli": [5, 20, 26, 41, 43, 45], "cli": [4, 5, 25, 26], "click": [4, 25], "client": [2, 8, 9, 11, 14, 23, 29, 30, 32, 35], "clone": [12, 33], "close": [43, 45], "closest": [6, 27], "cmake": [0, 5, 6, 21, 26, 27, 42, 44], "cmake_src_configur": [9, 30, 42, 44], "cmake_src_instal": [9, 30], "cmd": [43, 45], "cmd2": [43, 45], "co": [10, 31, 43, 45], "code": [0, 1, 3, 5, 6, 7, 8, 9, 11, 13, 14, 16, 19, 20, 21, 22, 24, 26, 27, 28, 29, 30, 32, 34, 35, 37, 40, 41, 42, 43, 44, 45], "collada": [5, 26], "collect": [6, 19, 27, 40, 43, 45], "collid": [3, 19, 24, 40, 43, 45], "collis": [5, 15, 26, 36, 43, 45], "color": [5, 26], "colorama": [43, 45], "coloredlog": [5, 26], "column": [43, 45], "com": [0, 2, 4, 5, 6, 8, 12, 14, 16, 18, 21, 23, 25, 26, 27, 29, 33, 35, 37, 39, 43, 45], "combin": [0, 2, 3, 5, 10, 11, 12, 13, 16, 17, 18, 19, 21, 23, 24, 26, 31, 32, 33, 34, 37, 38, 39, 40, 42, 43, 44, 45], "come": [5, 13, 19, 26, 34, 40], "comma": [19, 40], "command": [10, 14, 15, 19, 20, 31, 35, 36, 40, 41, 43, 45], "commit": [2, 12, 16, 18, 23, 33, 37, 39, 43, 45], "common": [0, 3, 5, 6, 7, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 24, 26, 27, 28, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "commonli": [1, 2, 3, 5, 6, 9, 11, 18, 22, 23, 24, 26, 27, 30, 32, 39], "compar": [15, 16, 36, 37], "compat": [0, 1, 2, 4, 5, 6, 7, 9, 11, 13, 16, 18, 21, 22, 23, 25, 26, 27, 28, 30, 32, 34, 37, 39, 42, 44], "compet": [11, 32], "compil": [5, 6, 10, 11, 26, 27, 31, 32, 43, 45], "complet": [0, 5, 16, 17, 20, 21, 26, 37, 38, 41, 43, 45], "complex": [5, 7, 16, 18, 26, 28, 37, 39, 42, 44], "compliant": [5, 7, 18, 26, 28, 39], "compon": [2, 3, 8, 11, 14, 16, 23, 24, 29, 32, 35, 37], "composit": [42, 44], "comprehens": [15, 36], "compress": [5, 26], "compris": [5, 26], "concept": [1, 5, 10, 22, 26, 31], "concern": [3, 24], "condit": [6, 10, 12, 19, 27, 31, 33, 40, 43, 45], "condition": [0, 1, 2, 4, 5, 11, 12, 14, 15, 19, 21, 22, 23, 25, 26, 32, 33, 35, 36, 40, 42, 44], "conf": [5, 6, 19, 20, 26, 27, 40, 41], "config": [5, 9, 12, 26, 30, 33], "configfil": [43, 45], "configur": [5, 6, 8, 13, 14, 20, 26, 27, 29, 34, 35, 41, 43, 45], "confirm": [43, 45], "conflict": [15, 36], "conform": [15, 18, 36, 39], "confus": [15, 19, 36, 40], "connect": [43, 45], "consequ": [19, 40], "consid": [1, 2, 3, 5, 6, 7, 8, 11, 12, 14, 15, 16, 20, 22, 23, 24, 26, 27, 28, 29, 32, 33, 35, 36, 37, 41], "consider": [16, 19, 37, 40], "consist": [1, 6, 9, 12, 13, 14, 15, 22, 27, 30, 33, 34, 35, 36], "console_script": [5, 6, 26, 27], "constant": [20, 41], "construct": [2, 4, 8, 23, 25, 29, 42, 44], "consum": [5, 6, 26, 27, 43, 45], "contain": [1, 3, 4, 5, 6, 7, 12, 13, 15, 20, 22, 24, 25, 26, 27, 28, 33, 34, 36, 41], "content": [3, 5, 7, 24, 26, 28], "context": [16, 37, 42, 43, 44, 45], "contigu": [18, 39], "continu": [8, 12, 29, 33, 43, 45], "contrari": [11, 16, 32, 37], "control": [2, 4, 5, 19, 23, 25, 26, 40], "conveni": [1, 4, 5, 6, 7, 19, 20, 22, 25, 26, 27, 28, 40, 41, 43, 45], "convers": [5, 6, 26, 27], "convert": [6, 8, 13, 27, 29, 34], "convinc": [4, 25, 43], "copi": [1, 3, 5, 6, 9, 11, 15, 20, 22, 24, 26, 27, 30, 32, 36, 41, 42, 43, 44, 45], "copyright": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "core": [2, 5, 20, 23, 26, 41, 43, 45], "coreutil": [8, 29], "correct": [1, 5, 6, 7, 9, 10, 15, 16, 18, 20, 22, 26, 27, 28, 30, 31, 36, 37, 39, 41, 42, 44], "correctli": [0, 1, 5, 6, 7, 9, 11, 12, 13, 15, 16, 19, 21, 22, 26, 27, 28, 30, 32, 33, 34, 36, 37, 40, 43, 45], "correspond": [5, 11, 12, 15, 26, 32, 33, 36], "cost": [5, 11, 26, 32], "could": [0, 2, 3, 5, 6, 8, 9, 15, 16, 18, 19, 20, 21, 23, 24, 26, 27, 29, 30, 36, 37, 39, 40, 41, 42, 43, 44, 45], "cov": [5, 19, 26, 40, 43, 45], "cover": [1, 5, 6, 13, 22, 26, 27, 34, 43, 45], "coverag": [1, 5, 15, 19, 22, 26, 36, 40, 43, 45], "cp": [43, 45], "cp39": [18, 39], "cpp": [2, 23], "cpython": [1, 4, 5, 9, 11, 13, 18, 20, 22, 25, 26, 30, 32, 34, 39, 41], "crate": [5, 26], "creat": [1, 3, 4, 5, 6, 12, 13, 15, 16, 20, 22, 24, 25, 26, 27, 33, 34, 36, 37, 41, 43, 45], "creativ": [10, 31], "cropgtk": [9, 30], "cross": [5, 26], "crucial": [15, 36], "cruft": [13, 34], "cryptic": [5, 26], "cryptographi": [8, 15, 29, 36], "csound": [42, 44], "current": [0, 5, 6, 11, 12, 13, 15, 19, 21, 26, 27, 32, 33, 34, 36, 40, 43, 45], "custom": [1, 2, 3, 6, 10, 13, 15, 16, 19, 20, 22, 23, 24, 27, 31, 34, 36, 37, 40, 41], "cx": [15, 36], "cxx": [2, 23], "cxx_flag": [2, 23], "cxxflag": [2, 23], "cycl": [10, 12, 31, 33], "cyclic": [5, 26], "cygwin": [6, 27, 43, 45], "cython": [2, 10, 14, 23, 31, 35, 42, 44], "d": [0, 2, 3, 8, 9, 14, 18, 19, 21, 23, 24, 29, 30, 35, 39, 40], "d1": [16, 37], "d2": [16, 37], "d3": [16, 37], "daemon": [2, 8, 23, 29], "dai": [11, 32], "danger": [16, 37], "dash": [5, 26], "dask": [5, 19, 26, 40], "data": [0, 2, 5, 6, 9, 16, 21, 23, 26, 27, 30, 37, 42, 43, 44, 45], "databas": [2, 4, 23, 25], "date": [15, 17, 20, 36, 38, 41, 43, 45], "dateutil": [4, 25], "dbpathprefix": [2, 23], "dbu": [0, 2, 21, 23], "dbuild_python_interfac": [42, 44], "dbuild_python_opcod": [42, 44], "dead": [12, 33], "deadlock": [10, 31], "deal": [2, 7, 8, 10, 15, 23, 28, 29, 31, 36], "debug": [2, 5, 23, 26], "decid": [19, 40], "declar": [0, 1, 2, 5, 6, 8, 9, 11, 14, 19, 21, 22, 23, 26, 27, 29, 30, 32, 35, 40, 42, 43, 44, 45], "declare_namespac": [3, 24], "decode_usenet_chunk": [43, 45], "decodebyt": [16, 37], "decor": [16, 19, 37, 40, 43, 45], "dedic": [5, 6, 12, 14, 26, 27, 33, 35, 45], "deep": [17, 38], "def": [16, 19, 37, 40, 43, 45], "default": [1, 2, 5, 6, 7, 8, 9, 11, 13, 14, 15, 18, 19, 20, 22, 23, 26, 27, 28, 29, 30, 32, 34, 35, 36, 39, 40, 41, 42, 43, 44, 45], "default_src_prepar": [5, 26], "defin": [0, 1, 5, 6, 11, 21, 22, 26, 27, 32, 42, 43, 44, 45], "definit": [6, 27], "delai": [19, 40], "delet": [2, 14, 23, 35], "deliber": [5, 26], "demonstr": [0, 5, 21, 26, 42, 44], "dep": [0, 5, 13, 19, 21, 26, 34, 40], "deped": [19, 40], "depend": [3, 6, 7, 9, 10, 11, 12, 13, 15, 16, 17, 18, 20, 24, 27, 28, 30, 31, 32, 33, 34, 36, 37, 38, 39, 41], "dependneci": [5, 26], "depenend": [11, 32], "depgraph": [12, 33], "deprec": [1, 3, 5, 10, 11, 13, 22, 24, 26, 31, 32, 34, 43, 45], "deprecationwarn": [19, 40], "deriv": [5, 6, 26, 27], "desc": [12, 33], "describ": [0, 5, 6, 8, 9, 15, 18, 20, 21, 26, 27, 29, 30, 36, 39, 41], "descript": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "deselect": [4, 12, 19, 25, 33, 40, 43, 45], "design": [1, 22, 42, 44], "desir": [13, 16, 20, 34, 37, 41, 43, 45], "destdir": [2, 8, 9, 20, 23, 29, 30, 41], "destin": [43, 45], "detail": [2, 7, 9, 11, 13, 16, 20, 23, 28, 30, 32, 34, 37, 41, 43, 45], "detect": [3, 5, 9, 15, 24, 26, 30, 36, 43, 45], "detector": [43, 45], "determin": [5, 6, 7, 11, 26, 27, 28, 32, 42, 43, 44, 45], "dev": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 39, 40, 41, 42, 43, 44, 45], "dev0": [15, 36], "dev20220515": [15, 36], "dev20220522": [15, 36], "devel": [8, 29], "develop": [0, 1, 7, 11, 15, 17, 19, 21, 22, 28, 32, 36, 38, 40, 43], "devic": [2, 8, 23, 29], "deviceclass": [20, 41], "devmanu": [43, 45], "dict": [5, 26, 42, 44], "dict2db": [42, 44], "dictionari": [6, 27, 42, 44], "did": [3, 13, 16, 24, 34, 37, 43, 45], "die": [2, 3, 5, 8, 9, 14, 16, 19, 23, 24, 26, 29, 30, 35, 37, 40, 43, 45], "diff": [12, 33], "differ": [0, 1, 3, 5, 9, 10, 11, 15, 16, 19, 21, 22, 24, 26, 30, 31, 32, 36, 37, 40, 43, 45], "dir": [5, 14, 26, 35], "direct": [6, 14, 27, 35], "directli": [1, 5, 6, 7, 9, 11, 13, 16, 19, 22, 26, 27, 28, 30, 32, 34, 37, 40, 43, 45], "directori": [3, 5, 6, 9, 10, 11, 12, 13, 14, 16, 18, 20, 24, 26, 27, 30, 31, 32, 33, 34, 35, 37, 39, 41, 43, 45], "dirti": [15, 36], "disabl": [2, 5, 8, 10, 11, 12, 14, 18, 23, 26, 29, 31, 32, 33, 35, 39, 42, 43, 44, 45], "disable_tiff": [5, 26], "disable_webp": [5, 26], "discontinu": [11, 32], "discourag": [3, 6, 24, 27], "discoveri": [19, 20, 40, 41, 43, 45], "discret": [19, 40], "disjoint": [10, 31], "disk": [19, 20, 40, 41, 43, 45], "displai": [43, 45], "dist": [5, 26], "distfil": [5, 16, 18, 26, 37, 39, 42, 44], "distinguish": [3, 5, 13, 24, 26, 34], "distribut": [0, 2, 4, 5, 6, 8, 14, 15, 16, 17, 20, 21, 23, 25, 26, 27, 29, 35, 36, 37, 38, 41, 42, 43, 44, 45], "distutil": [1, 3, 4, 9, 10, 13, 14, 18, 19, 20, 22, 24, 25, 30, 31, 34, 35, 39, 40, 41, 42, 43, 44, 45], "distutils_all_subphase_impl": [8, 29], "distutils_arg": [5, 13, 26, 34], "distutils_dep": [5, 26], "distutils_enable_sphinx": [5, 8, 26, 29], "distutils_enable_test": [4, 5, 10, 13, 19, 25, 26, 31, 34, 40], "distutils_ext": [5, 26], "distutils_in_source_build": [6, 27], "distutils_install_for_test": [6, 13, 27, 34, 43, 45], "distutils_opt": [5, 26], "distutils_pep517_instal": [43, 45], "distutils_single_impl": [5, 7, 26, 28], "distutils_strict_entry_point": [6, 27], "distutils_use_pep517": [5, 13, 26, 34], "distutils_use_setuptool": [5, 13, 26, 34], "django": [16, 37, 43, 45], "dlint": [5, 26], "dndebug": [43, 45], "do": [0, 1, 3, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "doabl": [3, 24], "dobin": [2, 9, 23, 30], "doc": [1, 2, 5, 8, 22, 23, 26, 29, 42, 44], "docbook": [20, 41], "docinto": [5, 26], "docker": [12, 33], "docompress": [5, 26], "docstr": [20, 41], "document": [1, 2, 7, 8, 10, 11, 14, 16, 17, 22, 23, 28, 29, 31, 32, 35, 37, 38, 43, 45], "dodoc": [2, 5, 23, 26], "doe": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 39, 40, 41, 43, 45], "doin": [9, 30], "dom": [11, 32], "domain": [43, 45], "doman": [2, 23], "don": [5, 13, 26, 34], "done": [1, 3, 5, 6, 8, 9, 14, 15, 19, 22, 24, 26, 27, 29, 30, 35, 36, 40, 43, 45], "dot": [15, 18, 36, 39], "doubl": [42, 44], "doubt": [15, 36], "down": [11, 32], "downgrad": [8, 29], "download": [0, 2, 5, 8, 14, 21, 23, 26, 29, 35], "downstream": 43, "dpython3_include_dir": [13, 34], "dpython3_librari": [13, 34], "dpython_dest": [9, 30], "dpython_execut": [9, 30], "dpython_include_dir": [9, 30], "dpython_librari": [9, 30], "draw": [14, 35], "driver": [2, 23], "drop": [11, 16, 32, 37], "duali": [42, 44], "due": [10, 12, 14, 18, 20, 31, 33, 35, 39, 41], "dump": [16, 37, 43, 45], "duplic": [5, 14, 26, 35, 43, 45], "dure": [1, 5, 6, 7, 12, 13, 19, 20, 22, 26, 27, 28, 33, 34, 40, 41], "dynam": [2, 23], "e": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "each": [5, 6, 7, 11, 14, 26, 27, 28, 32, 35], "eapi": [0, 2, 4, 5, 6, 8, 10, 14, 21, 23, 25, 26, 27, 29, 31, 35, 42, 43, 44, 45], "eappli": [2, 23], "eapply_us": [2, 23], "earli": [7, 8, 12, 28, 29, 33, 43, 45], "earlier": [3, 13, 16, 24, 34, 37], "eas": [12, 15, 33, 36], "easi": [16, 19, 20, 37, 40, 41, 43, 45], "easier": [7, 18, 19, 20, 28, 39, 40, 41, 43, 45], "easiest": [5, 15, 26, 36, 42, 44], "easili": [5, 14, 19, 26, 35, 40, 43, 45], "eautoreconf": [14, 16, 35, 37], "ebuild": [0, 1, 4, 5, 6, 7, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "echo": [8, 20, 29, 41], "eclass": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 17, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 38, 40, 42, 43, 44, 45], "econf": [5, 26, 42, 44], "econf_sourc": [14, 35], "ecosystem": [5, 15, 17, 26, 36, 38], "ed": [2, 9, 15, 23, 30, 36], "edit": [16, 37], "editor": [5, 26], "effect": [5, 8, 11, 20, 26, 29, 32, 41], "effici": [5, 15, 26, 36], "effort": [12, 33], "egg": [5, 6, 26, 27], "eigen": [2, 23], "eigen3": [2, 23], "einstalldoc": [5, 8, 14, 26, 29, 35], "either": [1, 2, 5, 8, 9, 11, 13, 19, 20, 22, 23, 26, 29, 30, 32, 34, 40, 41, 43, 45], "electrostat": [2, 23], "elibc_freebsd": [2, 23], "elibc_glibc": [8, 29], "elog": [20, 41], "els": [2, 8, 11, 16, 23, 29, 32, 37], "emak": [5, 8, 9, 26, 29, 30], "emb": [16, 37], "embed": [1, 2, 9, 11, 22, 23, 30, 32], "emerg": [12, 20, 33, 41], "emesonarg": [5, 26], "empti": [4, 5, 15, 18, 19, 25, 26, 36, 39, 40], "en": [5, 26], "enabl": [0, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 19, 20, 21, 24, 25, 27, 28, 29, 31, 32, 33, 35, 36, 40, 41, 43, 45], "enable_tiff": [5, 26], "enable_webp": [5, 26], "encod": [16, 37, 43, 45], "encodebyt": [16, 37], "encourag": [5, 15, 26, 36], "end": [5, 6, 7, 9, 11, 14, 19, 26, 27, 28, 30, 32, 35, 40, 43, 45], "energi": [42, 44], "enforc": [1, 4, 5, 7, 8, 11, 19, 22, 25, 26, 28, 29, 32, 40, 43, 45], "enough": [1, 11, 22, 32, 43, 45], "ensur": [0, 1, 4, 5, 6, 9, 12, 14, 19, 20, 21, 22, 25, 26, 27, 30, 33, 35, 40, 41, 42, 44], "ensurepip": [18, 39], "enter": [11, 32], "entir": [3, 5, 9, 12, 13, 14, 18, 19, 24, 26, 30, 33, 34, 35, 39, 40, 43, 45], "entri": [1, 5, 12, 19, 20, 22, 26, 33, 40, 41], "entropi": [9, 30], "entry_point": [6, 19, 27, 40], "enum": [11, 32], "env": [9, 12, 30, 33], "env_var": [2, 23], "environ": [0, 5, 6, 10, 11, 13, 14, 16, 19, 21, 26, 27, 31, 32, 34, 35, 37, 40, 42, 44], "eof": [2, 5, 23, 26], "eol": [15, 16, 36, 37], "ep": [5, 26], "eprefix": [2, 5, 8, 9, 23, 26, 29, 30], "epydoc": [8, 29], "epytest": [4, 5, 6, 8, 12, 19, 25, 26, 27, 29, 33, 40, 43, 45], "epytest_deselect": [4, 12, 19, 25, 33, 40], "epytest_ignor": [19, 40, 45], "epytest_timeout": [19, 40], "epytest_xdist": [19, 40], "epython": [1, 2, 5, 8, 9, 12, 13, 19, 22, 23, 26, 29, 30, 33, 34, 40, 43, 45], "equal": [15, 36, 43], "equival": [6, 8, 9, 13, 18, 27, 29, 30, 34, 39], "error": [0, 2, 5, 9, 12, 13, 19, 20, 21, 23, 26, 30, 33, 34, 40, 41, 43, 45], "escap": [4, 13, 25, 34, 42, 44], "escon": [2, 23], "eselect": [8, 29], "esetup": [5, 8, 26, 29], "especi": [5, 7, 18, 19, 20, 26, 28, 39, 40, 41, 43, 45], "establish": [1, 13, 22, 34, 43, 45], "etc": [1, 22], "eunittest": [43, 45], "eutil": [2, 23], "evalu": [13, 16, 34, 37], "even": [5, 8, 9, 11, 16, 19, 26, 29, 30, 32, 37, 40, 43, 45], "event": [3, 11, 19, 24, 32, 40], "event_loop": [19, 40], "eventlet": [19, 40], "eventu": [11, 12, 32, 33], "everi": [4, 5, 6, 8, 11, 14, 15, 16, 18, 19, 20, 25, 26, 27, 29, 32, 35, 36, 37, 39, 40, 41, 43, 45], "everyth": [2, 13, 19, 20, 23, 34, 40, 41], "ex": [12, 33], "exact": [3, 5, 11, 24, 26, 32, 42, 44], "exactli": [0, 7, 18, 21, 28, 39], "exampl": [0, 4, 5, 6, 7, 8, 9, 11, 12, 15, 16, 17, 18, 19, 21, 25, 26, 27, 28, 29, 30, 32, 33, 36, 37, 38, 39, 40, 42, 43, 44, 45], "exce": [19, 40], "except": [6, 7, 9, 11, 12, 16, 27, 28, 30, 32, 33, 37], "exclud": [20, 41], "exec": [1, 8, 9, 11, 12, 22, 29, 30, 32, 33, 43, 45], "exec_modul": [43, 45], "exec_prefix": [16, 37], "execnet": [18, 39], "execut": [5, 6, 7, 9, 11, 12, 13, 14, 26, 27, 28, 30, 32, 33, 34, 35, 43, 45], "exist": [5, 10, 11, 12, 16, 20, 26, 31, 32, 33, 37, 41], "exit": [5, 16, 20, 26, 37, 41, 43, 45], "expand": [4, 25], "expans": [4, 25], "expect": [6, 11, 16, 19, 20, 27, 32, 37, 40, 41, 43, 45], "experienc": [19, 40], "expert": [5, 10, 14, 26, 31, 35, 43, 45], "explain": [0, 1, 6, 20, 21, 22, 27, 41], "explan": [43, 45], "explicit": [3, 4, 5, 6, 18, 19, 24, 25, 26, 27, 39, 40, 42, 43, 44, 45], "explicitli": [1, 5, 7, 8, 13, 18, 19, 20, 22, 26, 28, 29, 34, 39, 40, 41, 43, 45], "exploit": [16, 37], "export": [0, 1, 2, 5, 21, 22, 23, 26, 42, 44], "expos": [5, 6, 26, 27, 43, 45], "express": [0, 8, 13, 21, 29, 34, 42, 44], "ext": [5, 26], "extend": [5, 11, 26, 32], "extend_path": [3, 24], "extens": [1, 6, 7, 8, 9, 10, 11, 14, 15, 16, 22, 27, 28, 29, 30, 31, 32, 35, 36, 37], "extern": [1, 2, 5, 6, 7, 11, 12, 22, 23, 26, 27, 28, 32, 33, 43, 45], "extra": [1, 5, 6, 10, 22, 26, 27, 31], "extra_inc_dir": [2, 23], "extra_opt": [42, 44], "extran": [5, 26], "extras_requir": [1, 5, 22, 26], "extrem": [3, 5, 6, 24, 26, 27], "ez_setup": [5, 26], "f": [2, 9, 16, 23, 30, 37], "f90_interfac": [2, 23], "face": [12, 33, 43, 45], "facil": [6, 27], "facilit": [5, 9, 18, 26, 30, 39], "fact": [43, 45], "fail": [0, 1, 2, 5, 8, 9, 11, 12, 16, 19, 21, 22, 23, 26, 29, 30, 32, 33, 37, 40, 43, 45], "failur": [1, 5, 10, 11, 12, 22, 26, 31, 32, 33], "fairli": [2, 15, 23, 36, 42, 44], "fall": [6, 16, 27, 37, 43, 45], "fallback": [6, 20, 27, 41], "fals": [0, 2, 5, 8, 12, 15, 16, 19, 21, 23, 26, 29, 33, 36, 37, 40], "far": [3, 12, 24, 33, 42, 44], "fastdl": [2, 23], "faster": [19, 20, 40, 41], "fatal": [19, 40, 43, 45], "fdl": [0, 21, 42, 44], "feasibl": [4, 11, 15, 25, 32, 36], "featur": [0, 4, 5, 6, 7, 8, 11, 12, 13, 19, 20, 21, 25, 26, 27, 28, 29, 32, 33, 34, 40, 41, 42, 43, 44, 45], "februari": [13, 34], "feel": [5, 15, 26, 36], "fetch": [5, 10, 12, 26, 31, 33], "few": [2, 4, 6, 12, 19, 23, 25, 27, 33, 40, 43, 45], "fewest": [12, 33], "fi": [0, 2, 4, 5, 8, 12, 14, 21, 23, 25, 26, 29, 33, 35, 42, 44], "file": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 37, 39, 42, 44], "filenam": [4, 5, 25, 26], "filesdir": [2, 23], "filetyp": [15, 36], "fill": [17, 38], "filterwarn": [19, 40], "final": [1, 2, 4, 5, 9, 11, 13, 16, 22, 23, 25, 26, 30, 32, 34, 37, 42, 43, 44, 45], "finalize_opt": [5, 26], "find": [0, 2, 3, 4, 6, 14, 15, 20, 21, 23, 24, 25, 27, 35, 36, 41, 43, 45], "find_packag": [20, 41], "fine": [3, 12, 16, 24, 33, 37], "finish": [19, 40], "fionet": [14, 35], "first": [6, 10, 11, 12, 15, 16, 19, 20, 27, 31, 32, 33, 36, 37, 40, 41, 43, 45], "firstli": [43, 45], "fish": [43, 45], "fit": [6, 27, 43, 45], "fix": [5, 6, 10, 11, 12, 15, 16, 19, 20, 26, 27, 31, 32, 33, 36, 37, 40, 41, 43, 45], "fixm": [5, 26], "fixtur": [10, 12, 31, 33], "flag": [0, 1, 5, 7, 8, 9, 10, 11, 12, 14, 15, 21, 22, 26, 28, 29, 30, 31, 32, 33, 35, 36, 42, 43, 44, 45], "flake8": [19, 40, 43, 45], "flaki": [10, 31, 43, 45], "flask": [15, 18, 36, 39], "flask_babelex": [18, 39], "flex": [8, 29], "flexibl": [5, 7, 26, 28], "flit": [1, 5, 6, 12, 13, 22, 26, 27, 33, 34], "flit_cor": [5, 12, 20, 26, 33, 41], "flit_scm": [10, 31], "float": [16, 37], "fnmatch": [4, 25], "focu": [1, 7, 12, 14, 22, 28, 33, 35], "focus": [12, 33], "folder": [5, 26], "follow": [0, 1, 3, 4, 5, 6, 8, 9, 11, 12, 13, 15, 16, 17, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "followup": [15, 36], "foo": [7, 16, 28, 37, 45], "foo_mock": [16, 37], "footprint": [20, 41], "forc": [4, 5, 6, 8, 9, 12, 13, 19, 25, 26, 27, 29, 30, 33, 34, 40, 43, 45], "fordfrog": [42, 44], "fork": [0, 11, 12, 15, 21, 32, 33, 36, 43, 45], "form": [1, 4, 12, 17, 18, 19, 22, 25, 33, 38, 39], "format": [8, 12, 15, 16, 18, 20, 29, 33, 36, 37, 39, 41], "former": [1, 5, 7, 8, 13, 16, 22, 26, 28, 29, 34, 37, 43, 45], "fortran": [2, 23], "fortran_need": [2, 23], "fortran_standard": [2, 23], "fortranflag": [2, 23], "fortun": [11, 32], "forward": [11, 32], "found": [0, 1, 3, 5, 6, 9, 10, 11, 12, 15, 18, 20, 21, 22, 24, 26, 27, 30, 31, 32, 33, 36, 39, 41, 43, 45], "foundat": [14, 35], "four": [9, 13, 30, 34, 42, 44], "fourth": [13, 34], "fragil": [19, 40], "fragment": [5, 16, 26, 37], "framework": [2, 3, 5, 11, 17, 23, 24, 26, 32, 38], "free": [2, 15, 23, 36, 43], "freedesktop": [0, 21], "freez": [15, 36], "freezegun": [4, 19, 25, 40, 43, 45], "freezer": [19, 40], "frequent": [18, 19, 39, 40, 43, 45], "freshli": [3, 24], "frobnic": [5, 26], "from": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "frozen": [43, 45], "frozendict": [43, 45], "fspath": [43, 45], "ftp": [2, 23, 42, 44], "full": [1, 2, 4, 5, 13, 22, 23, 25, 26, 34, 43, 45], "fullargspec": [16, 37], "fulli": [4, 5, 7, 11, 25, 26, 28, 32], "func": [2, 8, 23, 29], "funcsig": [11, 32], "function": [0, 1, 4, 6, 7, 8, 10, 11, 13, 14, 16, 18, 19, 20, 21, 22, 25, 27, 28, 29, 31, 32, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "further": [1, 19, 22, 40], "furthermor": [0, 2, 5, 21, 23, 26], "futur": [5, 15, 18, 19, 26, 36, 39, 40], "g": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "ga": [14, 35], "gain": [2, 19, 23, 40], "gap": [17, 38], "gaupol": [8, 29], "gc": [11, 32], "gemato": [15, 36], "gener": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 40, 41, 42, 43, 44, 45], "gentoo": [0, 1, 2, 4, 5, 6, 8, 9, 11, 12, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 25, 26, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "get": [0, 5, 6, 12, 13, 18, 19, 21, 26, 27, 33, 34, 39, 40, 43, 45], "get_event_loop": [19, 40], "get_libdir": [2, 8, 23, 29], "get_path": [16, 37], "get_python_inc": [16, 37], "get_python_lib": [16, 37], "get_udevdir": [2, 8, 23, 29], "getar": [2, 23], "getcc": [2, 9, 23, 30], "getcxx": [2, 23], "getfc": [2, 23], "getfullargspec": [16, 37], "getranlib": [2, 23], "getter": [9, 13, 16, 30, 34, 37], "gettext": [8, 29], "gfx": [2, 23], "gh": [5, 26, 43, 45], "gi": [14, 35], "git": [5, 12, 26, 33, 43, 45], "github": [0, 2, 4, 5, 6, 8, 12, 14, 16, 17, 18, 21, 23, 25, 26, 27, 29, 33, 35, 37, 38, 39, 42, 43, 44, 45], "github3": [15, 36], "gitlab": [2, 8, 23, 29], "give": [42, 44], "given": [13, 34], "glib": [2, 23], "global": [0, 1, 5, 8, 13, 14, 19, 21, 22, 26, 29, 34, 35, 40, 42, 43, 44, 45], "gna": [2, 23], "gnome": [0, 4, 14, 21, 25, 35], "gnome2": [0, 4, 14, 21, 25, 35], "gnome2_src_configur": [14, 35], "gnome2_src_instal": [14, 35], "gnome2_src_prepar": [14, 35], "gnu": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "go": [1, 2, 8, 17, 18, 19, 22, 23, 29, 38, 39, 40], "goal": [8, 12, 29, 33, 43], "gobject": [0, 21], "goe": [12, 33, 43], "goocanva": [14, 35], "good": [3, 5, 11, 15, 17, 19, 24, 32, 36, 38, 40, 43, 45], "got": [10, 13, 31, 34], "gp": [2, 8, 23, 29], "gpep517": [5, 18, 20, 26, 39, 41], "gpl": [0, 2, 4, 8, 14, 21, 23, 25, 29, 35, 42, 44], "gpsd": [2, 8, 23, 29], "gpsd_group": [2, 8, 23, 29], "gpsd_user": [2, 8, 23, 29], "gpyutil": [12, 15, 33, 36], "grab": [13, 20, 34, 41], "grace": [2, 23], "gracefulli": [1, 4, 8, 22, 25, 29], "graph": [7, 11, 12, 28, 32, 33], "great": [11, 32], "greater": [5, 7, 26, 28], "greenlet": [10, 19, 31, 40], "grep": [5, 26], "gross": [13, 34], "group": [1, 2, 6, 13, 15, 19, 22, 23, 27, 34, 36, 40], "gtk": [14, 35], "gtk2": [42, 44], "guarante": [5, 6, 10, 18, 26, 27, 31, 39], "guess": [43, 45], "gui_script": [6, 27], "guid": [1, 3, 5, 16, 17, 20, 22, 24, 26, 37, 38, 41], "gz": [0, 2, 4, 5, 6, 8, 14, 18, 21, 23, 25, 26, 27, 29, 35, 39, 42, 43, 44, 45], "g\u00f3rny": [10, 31], "h": [8, 9, 29, 30, 42, 44], "ha": [2, 3, 5, 6, 7, 11, 12, 13, 14, 15, 16, 18, 19, 20, 23, 24, 26, 27, 28, 32, 33, 34, 35, 36, 37, 39, 40, 41, 43, 45], "hack": [5, 6, 7, 13, 26, 27, 28, 34], "had": [2, 23], "hand": [11, 13, 32, 34], "handl": [1, 4, 5, 6, 8, 13, 14, 15, 22, 25, 26, 27, 29, 34, 35, 36, 43, 45], "handler": [5, 26], "hang": [8, 10, 29, 31], "happen": [2, 3, 4, 6, 7, 8, 11, 23, 24, 25, 27, 28, 29, 32, 42, 43, 44, 45], "hard": [5, 8, 12, 26, 29, 33], "hardcod": [1, 12, 19, 22, 33, 40], "harder": [8, 15, 29, 36], "hardest": [0, 21], "hardwar": [11, 19, 32, 40], "has_vers": [0, 4, 12, 21, 25, 33], "hash": [18, 39], "hashtabl": [5, 26], "hatch": [10, 31], "hatchl": [5, 26], "have": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "header": [1, 9, 22, 30], "heavi": [6, 27], "help": [0, 15, 17, 19, 21, 36, 38, 40, 43, 45], "helper": [4, 5, 7, 10, 14, 25, 26, 28, 31, 35, 42, 43, 44, 45], "henc": [2, 5, 14, 23, 26, 35], "hepforg": [42, 44], "here": [6, 8, 14, 27, 29, 35, 42, 44], "hexvers": [11, 32, 43, 45], "high": [2, 4, 11, 12, 15, 19, 23, 25, 32, 33, 36, 40, 42, 44], "highlight": [0, 16, 21, 37, 42, 44], "hint": [12, 33, 43, 45], "histor": [3, 6, 11, 13, 16, 18, 20, 24, 27, 32, 34, 37, 39, 41, 43, 45], "histori": [15, 36], "hit": [16, 37], "hold": [11, 16, 32, 37], "home": [6, 12, 13, 27, 33, 34], "homepag": [0, 2, 4, 5, 6, 8, 14, 15, 21, 23, 25, 26, 27, 29, 35, 36, 42, 43, 44, 45], "horrend": [43, 45], "host": [0, 21], "hous": [11, 32], "how": [43, 45], "howev": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45], "hppa": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "html": [0, 5, 8, 20, 21, 26, 29, 41, 43, 45], "http": [0, 2, 4, 5, 6, 8, 9, 12, 14, 16, 18, 20, 21, 23, 25, 26, 27, 29, 30, 33, 35, 37, 39, 41, 42, 43, 44, 45], "httpbin": [8, 19, 29, 40], "httpcore": [15, 36], "httpx": [15, 36], "hukkin": [5, 26], "human": [8, 29], "humanfriendli": [5, 26], "hybrid": [5, 10, 26, 31], "hyphen": [15, 36], "hypothesi": [43, 45], "hz1jw": [42, 44], "i": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44], "i18n": [14, 35], "ia64": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "id": [15, 36], "idea": [5, 15, 19, 36, 43, 45], "ideal": [11, 15, 32, 36, 43, 45], "ident": [20, 41], "identifi": [1, 22], "idepend": [0, 21], "idna": [8, 29], "ignor": [3, 4, 5, 8, 15, 19, 24, 25, 26, 29, 36, 40, 43, 45], "illustr": [15, 36], "imag": [5, 9, 20, 26, 30, 41], "imagin": [8, 29], "immedi": [4, 5, 12, 19, 25, 26, 33, 40, 42, 44], "impact": [16, 20, 37, 41], "impl": [1, 5, 10, 13, 22, 26, 31, 34], "implement": [0, 1, 3, 4, 5, 6, 7, 10, 14, 16, 17, 19, 20, 21, 22, 24, 25, 26, 27, 28, 31, 35, 37, 38, 40, 41, 42, 43, 44, 45], "impli": [2, 9, 11, 23, 30, 32], "implic": [5, 26], "implicit": [14, 20, 35, 41, 43, 45], "implicitli": [0, 3, 5, 8, 12, 19, 20, 21, 24, 26, 29, 33, 40, 41, 42, 43, 44, 45], "import": [0, 1, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 16, 18, 19, 21, 22, 24, 25, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 39, 40], "import_modul": [43, 45], "import_path": [43, 45], "importerror": [5, 6, 10, 11, 16, 26, 27, 31, 32, 37], "importlib": [6, 11, 27, 32, 43, 45], "importlib_metadata": [4, 6, 15, 25, 27, 36, 43, 45], "importmod": [43, 45], "importpathmismatcherror": [10, 31], "improp": [17, 38], "improv": [9, 10, 11, 17, 30, 31, 32, 38], "in1": [16, 37], "in2": [16, 37], "incdir": [8, 29], "includ": [1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "incompat": [5, 6, 11, 16, 19, 26, 27, 32, 37, 40, 43, 45], "incompatibilit": [16, 37], "incomplet": [5, 26], "inconsist": [11, 15, 32, 36, 43, 45], "inconveni": [18, 39], "incorrect": [5, 6, 20, 26, 27, 41], "increas": [19, 40], "increment": [11, 32], "inde": [13, 34], "independ": [2, 4, 5, 6, 7, 14, 23, 25, 26, 27, 28, 35, 42, 44], "index": [5, 10, 26, 31], "indic": [1, 5, 6, 11, 12, 13, 15, 18, 19, 20, 22, 26, 27, 32, 33, 34, 36, 39, 40, 41, 43, 45], "indirect": [5, 26], "individu": [2, 5, 11, 19, 23, 26, 32, 40], "infer_vers": [5, 26], "inflect": [5, 26], "inflector": [5, 26], "info": [0, 5, 6, 19, 21, 26, 27, 40], "inform": [1, 3, 6, 10, 13, 16, 18, 20, 22, 24, 27, 31, 34, 37, 39, 41, 43, 45], "inherit": [0, 1, 2, 4, 5, 6, 7, 8, 9, 13, 14, 16, 18, 21, 22, 23, 25, 26, 27, 28, 29, 30, 34, 35, 37, 39, 42, 43, 44, 45], "ini": [1, 5, 19, 22, 26, 40, 43, 45], "init": [5, 26], "initi": [11, 32, 43, 45], "inject": [3, 24, 42, 43, 44, 45], "inlin": [2, 7, 14, 18, 23, 28, 35, 39], "inplac": [6, 27], "input": [16, 37], "insensit": [15, 36], "insert": [16, 37], "insid": [0, 1, 3, 5, 6, 9, 14, 18, 21, 22, 24, 26, 27, 30, 35, 39, 42, 43, 44, 45], "insinto": [9, 30], "insist": [16, 37], "inspect": [5, 26], "instabl": [19, 40], "instal": [0, 1, 3, 4, 7, 8, 10, 11, 12, 13, 16, 19, 21, 22, 24, 25, 28, 29, 31, 32, 33, 34, 37, 40], "install_requir": [1, 3, 5, 6, 22, 24, 26, 27], "instanc": [13, 16, 18, 34, 37, 39], "instead": [2, 3, 5, 6, 7, 8, 9, 13, 14, 16, 18, 19, 20, 23, 24, 26, 27, 28, 29, 30, 34, 35, 37, 39, 40, 41, 42, 43, 44, 45], "int": [16, 37], "intact": [5, 26], "integr": [8, 9, 10, 11, 29, 30, 31, 32], "intend": [16, 19, 20, 37, 40, 41, 43, 45], "intent": [19, 40], "intention": 45, "interact": [11, 32], "interest": [6, 8, 27, 29, 43, 45], "interfac": [3, 6, 11, 15, 16, 24, 27, 32, 36, 37], "intern": [10, 31], "internet": [5, 10, 19, 26, 31, 40], "interpret": [0, 1, 2, 5, 6, 7, 9, 10, 13, 14, 15, 16, 19, 20, 21, 22, 23, 26, 27, 28, 30, 31, 34, 35, 36, 37, 40, 41, 42, 44], "interrupt": [19, 40], "interspers": [6, 20, 27, 41], "interv": [5, 26], "intro": [8, 29], "introduc": [5, 11, 26, 32], "introspect": [0, 21], "invalid": [0, 21], "investig": [8, 29], "invoc": [0, 5, 20, 21, 26, 41], "invok": [5, 26, 43, 45], "involv": [7, 8, 13, 28, 29, 34], "io": [2, 4, 5, 8, 14, 23, 25, 26, 29, 35, 42, 44], "ipaddress": [11, 32], "ironpython": [11, 32], "irrelev": [43, 45], "isn": [5, 26], "iso": [8, 29], "isol": [20, 41], "isort": [43, 45], "issu": [5, 6, 13, 15, 16, 19, 26, 27, 34, 36, 37, 40, 43, 45], "item": [43, 45], "its": [0, 1, 2, 5, 6, 7, 8, 11, 12, 15, 16, 18, 19, 21, 22, 23, 26, 27, 28, 29, 32, 33, 36, 37, 39, 40, 43, 45], "itself": [5, 6, 8, 9, 12, 15, 19, 26, 27, 29, 30, 33, 36, 40], "ius": [0, 2, 4, 5, 8, 14, 21, 23, 25, 26, 29, 35, 42, 43, 44, 45], "j1": [5, 26], "januari": [13, 34], "jaraco": [3, 5, 12, 19, 24, 26, 33, 40], "java": [11, 32], "javascript": [11, 32], "jazzband": [5, 26], "job": [2, 5, 23, 26], "jq": [5, 26], "json": [5, 26], "juli": [11, 32], "june": [11, 32], "jupyt": [5, 26], "jupyter_packag": [5, 26], "just": [1, 6, 11, 13, 22, 27, 32, 34, 43, 45], "justifi": [19, 40], "jython": [11, 32], "k6": [16, 37], "k7": [16, 37], "k8": [16, 37], "keep": [5, 15, 17, 26, 36, 38], "kei": [1, 5, 16, 19, 20, 22, 26, 37, 40, 41, 42, 44], "kernel": [14, 35], "kernel_linux": [8, 29], "keyword": [0, 2, 4, 5, 6, 8, 10, 14, 16, 21, 23, 25, 26, 27, 29, 31, 35, 37, 42, 43, 44, 45], "kind": [1, 3, 7, 9, 11, 22, 24, 28, 30, 32, 43, 45], "kinet": [2, 23], "kitti": [9, 30], "know": [13, 16, 34, 37, 43, 45], "known": [6, 16, 19, 27, 37, 40, 43, 45], "kp3": [16, 37], "kp4": [16, 37], "kp5": [16, 37], "kvm": [14, 35], "kwarg": [16, 37], "kwonlyarg": [16, 37], "kwonlydefault": [16, 37], "la": [14, 35], "lack": [3, 9, 24, 30, 43, 45], "lambda": [43, 45], "land": [9, 30], "lang": [2, 8, 11, 12, 23, 29, 32, 33, 42, 44], "languag": [1, 2, 5, 11, 15, 22, 23, 26, 32, 36], "larg": [5, 12, 15, 19, 20, 26, 33, 36, 40, 41], "last": [3, 5, 16, 24, 26, 37], "late": [11, 32], "later": [11, 32], "latest": [5, 15, 26, 36], "latter": [2, 5, 7, 8, 13, 15, 16, 23, 26, 28, 29, 34, 36, 37, 43, 45], "layer": [5, 14, 26, 35], "layout": [3, 6, 13, 24, 27, 34, 43, 45], "ldap": [2, 23], "ldb": [2, 23], "ldflag": [2, 5, 23, 26], "lead": [43, 45], "leak": [43, 45], "learn": [3, 24], "least": [0, 5, 8, 15, 20, 21, 26, 29, 36, 41, 43, 45], "leav": [6, 27], "left": [18, 39], "leftov": [6, 27], "legaci": [7, 10, 13, 16, 20, 28, 31, 34, 37, 41, 43, 45], "legal": [5, 26], "length": [16, 37], "lenient": [12, 33], "less": [3, 15, 24, 36, 43, 45], "let": [2, 4, 8, 16, 23, 25, 29, 37, 42, 44], "letter": [15, 18, 36, 39], "level": [3, 5, 9, 10, 11, 24, 30, 31, 32, 43, 45], "levenshtein": [8, 29], "lgpl": [0, 2, 14, 21, 23, 35, 42, 43, 44, 45], "lib": [2, 3, 5, 7, 9, 16, 19, 20, 23, 24, 26, 28, 30, 37, 40, 41, 43, 45], "lib64": [9, 30], "libboost_python": [7, 28], "libbsd": [2, 23], "libcangji": [14, 35], "libdir": [2, 8, 9, 23, 29, 30], "libdirnam": [2, 23], "libfmt": [2, 23], "libfoo": [5, 26], "libimag": [9, 30], "libpcap": [2, 23], "libpcr": [2, 23], "libpython": [7, 11, 16, 28, 32, 37], "librari": [0, 1, 2, 3, 4, 8, 9, 11, 14, 21, 22, 23, 24, 25, 29, 30, 32, 35, 42, 43, 44, 45], "libsecret": [0, 21], "libtool": [14, 35], "libudev": [2, 23], "libusb": [2, 23], "libx11": [2, 23], "libxslt": [2, 23], "licens": [0, 2, 4, 5, 6, 8, 10, 14, 20, 21, 23, 25, 26, 27, 29, 31, 35, 41, 42, 43, 44, 45], "life": [10, 31], "light": [1, 22], "lightweight": [4, 20, 25, 41], "like": [0, 2, 4, 5, 6, 8, 11, 15, 16, 20, 21, 23, 25, 26, 27, 29, 32, 36, 37, 41, 42, 43, 44, 45], "limit": [6, 12, 15, 17, 19, 27, 33, 36, 38, 40], "line": [0, 3, 5, 13, 15, 16, 19, 21, 24, 26, 34, 36, 37, 40, 42, 43, 44, 45], "link": [5, 7, 9, 16, 26, 28, 30, 37], "linkag": 5, "linker": [5, 9, 26, 30], "linkflag": [2, 23], "linter": [1, 22], "linux": [0, 2, 4, 5, 6, 8, 9, 14, 16, 21, 23, 25, 26, 27, 29, 30, 35, 37, 42, 43, 44, 45], "linux_distribut": [11, 32], "linuxmint": [0, 21], "list": [4, 5, 8, 12, 13, 19, 20, 25, 26, 29, 33, 34, 40, 41, 43, 45], "liter": [0, 4, 21, 25, 42, 44], "littl": [6, 19, 27, 40, 43, 45], "ll": [4, 14, 25, 35], "load": [3, 7, 9, 16, 19, 20, 24, 28, 30, 37, 40, 41, 43, 45], "loadabl": [5, 26], "local": [1, 2, 3, 4, 5, 8, 9, 12, 13, 14, 19, 20, 22, 23, 24, 25, 26, 29, 30, 33, 34, 35, 40, 41, 42, 43, 44, 45], "localize_pydatetim": [5, 26], "locat": [3, 5, 20, 24, 26, 41], "lock": [5, 26], "log": [5, 20, 26, 41], "logic": [5, 6, 12, 26, 27, 33, 43, 45], "login": [43, 45], "lollypop": [4, 25], "long": [5, 11, 12, 26, 32, 33], "longer": [4, 6, 11, 13, 18, 25, 27, 32, 34, 39, 43, 45], "look": [0, 1, 6, 8, 16, 19, 20, 21, 22, 27, 29, 37, 40, 41, 42, 43, 44, 45], "lookup": [43, 45], "lookuperror": [5, 26], "loop": [2, 5, 19, 23, 26, 40], "looponfail": [19, 40], "lot": [11, 15, 32, 36], "low": [19, 40], "lowercas": [15, 18, 36, 39], "lp": [43, 45], "lpython3": [16, 37], "lxml": [8, 29], "lzma": [11, 32], "m": [15, 19, 20, 36, 40, 41, 43, 45], "m68k": [0, 4, 5, 6, 8, 21, 25, 26, 27, 29, 42, 43, 44, 45], "machin": [14, 19, 20, 35, 40, 41], "machineri": [5, 26], "maco": [0, 4, 6, 8, 21, 25, 27, 29, 42, 43, 44, 45], "made": [11, 13, 14, 16, 32, 34, 35, 37, 42, 44], "magicmock": [16, 37], "mai": [1, 3, 4, 5, 6, 8, 11, 12, 13, 15, 16, 18, 19, 22, 24, 25, 26, 27, 29, 32, 33, 34, 36, 37, 39, 40, 43, 45], "mail": [12, 15, 33, 36], "main": [5, 9, 26, 30], "main_event_loop": [19, 40], "maintain": [5, 10, 11, 12, 16, 19, 26, 31, 32, 33, 37, 40], "mainten": [10, 31], "major": [4, 5, 6, 11, 15, 25, 26, 27, 32, 36, 43, 45], "make": [2, 3, 4, 5, 6, 7, 11, 12, 13, 15, 16, 18, 19, 20, 23, 24, 25, 26, 27, 28, 32, 33, 34, 36, 37, 39, 40, 41, 42, 43, 44, 45], "make_wrapp": [2, 9, 23, 30], "makefil": [5, 14, 26, 35], "makeopts_job": [2, 23], "man": [16, 37], "manag": [0, 4, 6, 8, 9, 18, 20, 21, 25, 27, 29, 30, 39, 41, 43, 45], "manbuild": [2, 8, 23, 29], "mani": [2, 5, 8, 12, 14, 15, 16, 20, 23, 26, 29, 33, 35, 36, 37, 41, 43, 45], "manipul": [5, 26, 43, 45], "manpag": [5, 26], "manpow": [15, 36], "manual": [2, 3, 6, 10, 11, 12, 18, 20, 23, 24, 27, 31, 32, 33, 39, 41], "map": [2, 5, 6, 8, 15, 19, 23, 26, 27, 29, 36, 40], "march": [13, 34], "mark": [11, 15, 19, 32, 36, 40, 43, 45], "marker": [10, 31, 43, 45], "markup": [18, 39], "martinblech": [5, 26], "mask": [4, 11, 12, 15, 25, 32, 33, 36], "masonri": [5, 26], "master": [5, 26, 43, 45], "match": [0, 2, 4, 5, 6, 8, 9, 10, 11, 12, 15, 20, 21, 23, 25, 26, 27, 29, 30, 31, 32, 33, 36, 41, 42, 44], "matplotlib": [2, 5, 23, 26, 42, 44], "maturin": [5, 26], "max_atom": [2, 23], "maximum": [1, 5, 22, 26], "mayb": [43, 45], "mayhem": [43, 45], "md": [2, 20, 23, 41], "me": [16, 37], "mean": [0, 1, 2, 5, 7, 8, 11, 15, 16, 18, 19, 21, 22, 23, 26, 28, 29, 32, 36, 37, 39, 40, 42, 43, 44, 45], "meaning": [6, 27], "meaningfulli": [1, 22], "meant": [1, 13, 16, 20, 22, 34, 37, 41], "mechan": [5, 7, 11, 26, 28, 32], "media": [0, 2, 8, 21, 23, 29], "meet": [7, 28], "member": [15, 36], "mercuri": [15, 36], "mere": [5, 7, 26, 28], "merg": [4, 5, 25, 26], "meson": [0, 4, 5, 7, 10, 15, 21, 25, 26, 28, 31, 36], "meson_src_compil": [5, 26], "meson_src_configur": [5, 26], "meson_src_instal": [5, 26], "meson_src_test": [5, 26], "mesonpi": [5, 26], "messag": [1, 5, 19, 22, 26, 40, 43, 45], "met": [16, 37], "metadata": [1, 5, 6, 14, 15, 22, 26, 27, 35, 36, 42, 44], "method": [3, 5, 11, 13, 19, 20, 24, 26, 32, 34, 40, 41, 43, 45], "mgorni": [12, 33], "micha\u0142": [10, 31], "microcontrol": [11, 32], "micropython": [11, 32], "might": [19, 40], "migrat": [10, 18, 31, 39], "mind": [15, 36], "minfx": [2, 23], "minim": [11, 15, 16, 32, 36, 37, 43, 45], "minimum": [0, 15, 21, 36, 42, 44], "minor": [11, 32, 43, 45], "mint": [0, 21], "minu": [18, 39], "minut": [19, 40], "mip": [0, 2, 4, 5, 6, 8, 21, 23, 25, 26, 27, 29, 42, 43, 44, 45], "mirror": [2, 4, 5, 6, 8, 14, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "misbehav": [6, 27], "misc": [2, 8, 23, 29], "miscompil": [5, 26], "mislead": [43, 45], "miss": [3, 4, 5, 6, 9, 10, 11, 12, 13, 15, 17, 18, 20, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 38, 39, 41], "mistak": [15, 20, 36, 41], "mit": [5, 6, 26, 27, 43, 45], "mkdir": [12, 33], "mock": [0, 4, 8, 11, 12, 16, 19, 21, 25, 29, 32, 33, 37, 40, 43, 45], "mocker": [19, 40], "mod": [43, 45], "mode": [1, 6, 7, 10, 13, 16, 20, 22, 27, 28, 31, 34, 37, 41], "model": [7, 28], "modern": [1, 4, 5, 6, 11, 12, 16, 19, 22, 25, 26, 27, 32, 33, 37, 40, 43, 45], "modif": [5, 26], "modifi": [5, 6, 11, 15, 20, 26, 27, 32, 36, 41, 43, 45], "modul": [1, 3, 4, 5, 6, 7, 8, 10, 11, 14, 15, 16, 19, 22, 24, 25, 26, 27, 28, 29, 31, 32, 35, 36, 37, 40, 43, 45], "module_nam": [43, 45], "modulenotfounderror": [3, 24], "modulesdir": [2, 23], "molecular": [2, 23], "molmol": [2, 23], "moment": [5, 11, 13, 15, 26, 32, 34, 36], "mongo": [2, 23], "mongodb": [2, 4, 23, 25], "monitor": [10, 20, 31, 41], "more": [0, 1, 3, 4, 5, 7, 9, 11, 12, 13, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 28, 30, 32, 33, 34, 36, 37, 39, 40, 41, 42, 44], "most": [0, 3, 5, 6, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 26, 27, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "mostli": [16, 17, 37, 38], "move": [0, 4, 5, 12, 21, 25, 26, 33], "mozilla": [43, 45], "mpi": [5, 26], "mrzechonek": [2, 23], "much": [2, 5, 20, 23, 26, 41, 43, 45], "multi": [1, 5, 10, 13, 22, 26, 31, 34, 42, 44], "multibuild": [14, 35], "multipl": [1, 3, 4, 5, 7, 10, 14, 15, 16, 17, 19, 20, 22, 24, 25, 26, 28, 31, 35, 36, 37, 38, 40, 41, 43, 45], "multipli": [19, 40], "music": [4, 25], "must": [0, 1, 2, 3, 5, 6, 7, 8, 11, 15, 16, 19, 21, 22, 23, 24, 26, 27, 28, 29, 32, 36, 37, 40, 42, 43, 44, 45], "my_p": [2, 23], "my_pn": [9, 30], "mycmakearg": [9, 13, 30, 34, 42, 44], "myconf": [2, 8, 23, 29], "mydistutilsarg": [13, 34], "myesconsarg": [2, 8, 23, 29], "myself": [43, 45], "mysql": [4, 14, 25, 35], "n": [2, 16, 23, 37], "name": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 16, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 35, 37, 43, 45], "namespac": [10, 19, 31, 40], "namespace_packag": [3, 24], "nativ": [11, 32], "natur": [2, 3, 5, 8, 15, 23, 24, 26, 29, 36], "nautilu": [0, 21], "ncurs": [2, 14, 23, 35], "nd": [2, 23], "nears": [11, 32], "necess": [19, 40], "necessari": [0, 2, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 21, 23, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 42, 43, 44, 45], "need": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "nemo": [0, 21], "net": [2, 8, 11, 14, 15, 23, 29, 32, 35, 36, 42, 44], "netloc": [16, 37], "network": [6, 19, 27, 40, 43, 45], "never": [6, 11, 13, 16, 27, 32, 34, 37], "new": [2, 5, 6, 9, 10, 11, 13, 16, 19, 23, 26, 27, 30, 31, 32, 34, 37, 40, 43, 45], "newer": [3, 4, 5, 6, 11, 12, 15, 16, 20, 24, 25, 26, 27, 32, 33, 36, 37, 41], "newli": [15, 36], "newlin": [16, 37], "next": [11, 12, 15, 32, 33, 36], "ninja": [8, 15, 29, 36], "nmr": [2, 23], "no_network": [43, 45], "no_waf_libdir": [2, 23], "node": [15, 36], "nodej": [5, 26], "non": [1, 6, 7, 9, 12, 14, 16, 18, 19, 22, 27, 28, 30, 33, 35, 37, 39, 40, 43, 45], "none": [2, 5, 6, 16, 18, 23, 26, 27, 37, 39], "nonfat": [43, 45], "nongnu": [2, 8, 23, 29], "nor": [11, 17, 20, 32, 38, 41], "normal": [0, 3, 5, 8, 9, 14, 15, 16, 18, 19, 20, 21, 24, 26, 29, 30, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "nose": [25, 43], "nosetest": 43, "nostrip": [2, 8, 23, 29], "notabl": [5, 15, 16, 18, 26, 36, 37, 39], "note": [0, 1, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "notic": [19, 20, 40, 41], "novemb": [16, 37], "now": [3, 5, 6, 8, 13, 14, 24, 26, 27, 29, 34, 35, 43, 45], "nowadai": [9, 12, 13, 30, 33, 34], "noxfil": [1, 22], "null": [43, 45], "number": [5, 7, 12, 15, 18, 19, 20, 26, 28, 33, 36, 39, 40, 41, 43, 45], "numdifftool": [2, 23], "numpi": [1, 2, 22, 23, 43, 45], "nurl": [16, 37], "o": [2, 5, 19, 20, 23, 26, 40, 41], "o0": [43, 45], "object": [2, 11, 16, 23, 32, 37, 42, 44], "obligatori": [12, 15, 33, 36], "obsolesc": [12, 33], "obsolet": [11, 13, 32, 34], "obviou": [1, 19, 22, 40, 43, 45], "ocassion": [9, 30], "occasion": [11, 32], "occur": [7, 11, 19, 28, 32, 40], "offset": [9, 30], "often": [1, 5, 12, 19, 22, 26, 33, 40, 43, 45], "old": [2, 4, 5, 6, 8, 10, 11, 12, 16, 23, 25, 26, 27, 29, 31, 32, 33, 37, 43, 45], "older": [1, 11, 15, 18, 22, 32, 36, 39], "omit": [5, 15, 16, 26, 36, 37], "ommit": [1, 22], "onc": [0, 5, 8, 11, 12, 20, 21, 26, 29, 32, 33, 41], "one": [0, 1, 2, 4, 5, 6, 7, 8, 9, 11, 16, 17, 19, 20, 21, 22, 23, 25, 26, 27, 28, 29, 30, 32, 37, 38, 40, 41, 42, 43, 44, 45], "ones": [12, 33], "onli": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "onto": [9, 30], "oo": [20, 41], "op": [5, 26], "opal": [2, 23], "open": [2, 16, 23, 37], "openapi": [15, 36], "openbabel": [2, 23], "opendx": [2, 23], "openldap": [2, 23], "openvpn": [9, 30], "oper": [5, 11, 17, 18, 26, 32, 38, 39], "opml": [15, 36], "opposit": [8, 11, 13, 29, 32, 34], "opt": [19, 20, 40, 41], "optfeatur": [1, 22], "optim": [20, 41], "optimize_flag": [2, 23], "option": [0, 1, 3, 6, 8, 10, 13, 15, 18, 19, 20, 21, 22, 24, 27, 29, 31, 34, 36, 39, 40, 41, 42, 43, 44, 45], "optional_packag": [2, 23], "order": [0, 1, 2, 4, 5, 7, 9, 12, 13, 14, 15, 21, 22, 23, 25, 26, 28, 30, 33, 34, 35, 36, 42, 43, 44, 45], "org": [0, 2, 4, 5, 6, 8, 9, 12, 14, 18, 20, 21, 23, 25, 26, 27, 29, 30, 33, 35, 39, 41, 42, 43, 44, 45], "organ": [3, 24], "orient": [2, 16, 23, 37], "origin": [5, 9, 11, 12, 16, 26, 30, 32, 33, 37, 43, 45], "oslo": [15, 36], "other": [0, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 21, 22, 23, 24, 25, 26, 28, 30, 31, 32, 33, 34, 35, 36, 38, 39, 41, 42, 43, 44, 45], "otherwis": [0, 6, 7, 8, 9, 19, 21, 27, 28, 29, 30, 40], "ought": [16, 37], "our": [6, 27, 43, 45], "out": [8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40], "outer": [4, 25], "outofboundstimedelta": [5, 26], "output": [4, 5, 6, 9, 16, 20, 25, 26, 27, 30, 37, 41, 43, 45], "outsid": [14, 35, 42, 44], "over": [5, 7, 11, 12, 19, 26, 28, 32, 33, 40, 42, 43, 44, 45], "overlap": [5, 26], "overrid": [5, 9, 14, 18, 19, 26, 30, 35, 39, 40, 43, 45], "overriden": [18, 39], "overview": [10, 31], "overwritten": [18, 39], "own": [5, 26, 43, 45], "p": [0, 2, 4, 5, 6, 8, 14, 18, 19, 21, 23, 25, 26, 27, 29, 35, 39, 40, 42, 43, 44, 45], "p1": [16, 37], "p2": [16, 37], "pace": [11, 32], "packag": [0, 8, 9, 10, 11, 13, 17, 19, 21, 29, 30, 31, 32, 34, 38, 40], "packags": [], "page": [10, 16, 17, 31, 37, 38], "pair": [20, 41], "panda": [5, 26], "pandas_datetime_to_datetimestruct": [5, 26], "parallel": [10, 31], "param": [16, 19, 37, 40], "paramet": [8, 16, 20, 29, 37, 41, 43, 45], "parametr": [19, 40], "paremet": [5, 26], "parent": [3, 9, 24, 30], "pars": [16, 37], "parsed_vers": [5, 26], "parseresult": [16, 37], "part": [2, 3, 4, 5, 8, 9, 12, 13, 14, 15, 18, 19, 23, 24, 25, 26, 29, 30, 33, 34, 35, 36, 39, 40, 43, 45], "parti": [5, 26], "partial": [4, 5, 9, 10, 13, 25, 26, 30, 31, 34], "particular": [0, 1, 4, 5, 6, 11, 15, 18, 21, 22, 25, 26, 27, 32, 36, 39, 43, 45], "particularli": [0, 5, 6, 7, 11, 13, 15, 19, 21, 26, 27, 28, 32, 34, 36, 40, 43, 45], "pass": [0, 6, 8, 9, 10, 12, 13, 16, 18, 19, 21, 27, 29, 30, 31, 33, 34, 37, 39, 40, 43, 45], "password": [4, 25], "past": [19, 40], "patch": [2, 4, 5, 6, 8, 11, 12, 16, 18, 20, 23, 25, 26, 27, 29, 32, 33, 37, 39, 41, 43, 45], "patchelf": [15, 36], "path": [1, 3, 5, 6, 9, 10, 12, 13, 16, 18, 20, 22, 24, 26, 27, 30, 31, 33, 34, 37, 39, 41, 43, 45], "pathlib": [19, 40, 43, 45], "pattern": [4, 12, 13, 25, 33, 34, 42, 44], "pax": [8, 29], "pbr": [5, 6, 26, 27], "pch": [2, 23], "pcre": [2, 23], "pdepend": [0, 2, 8, 12, 21, 23, 29, 33], "pdm": [10, 13, 31, 34], "pdm_build_scm_vers": [5, 26], "pend": [15, 36], "peopl": [17, 38], "pep": [1, 3, 6, 7, 10, 12, 15, 16, 18, 22, 24, 27, 28, 31, 33, 36, 37, 39], "pep517": [5, 20, 26, 41], "pep8": [43, 45], "per": [3, 20, 24, 41], "perform": [0, 2, 5, 6, 11, 12, 14, 18, 19, 20, 21, 23, 26, 27, 32, 33, 35, 39, 40, 41, 42, 43, 44, 45], "period": [13, 15, 34, 36], "permiss": [20, 41], "permit": [3, 4, 5, 6, 11, 15, 19, 24, 25, 26, 27, 32, 36, 43, 45], "pexpect": [0, 21, 43, 45], "pf": [5, 26], "phase": [0, 1, 3, 6, 7, 8, 9, 10, 13, 14, 15, 20, 21, 22, 24, 27, 28, 29, 30, 31, 34, 35, 36, 41, 42, 44], "physic": [5, 26, 42, 44], "pick": [5, 12, 26, 33], "pillow": [5, 26], "pin": [15, 36], "pip": [5, 12, 26, 33, 43, 45], "pip3": [15, 36], "pipelin": [2, 23, 43, 45], "pkg": [9, 30], "pkg_config": [2, 23], "pkg_config_path": [16, 37], "pkg_postinst": [1, 5, 22, 26], "pkg_resourc": [3, 6, 24, 27], "pkg_setup": [0, 1, 2, 8, 21, 22, 23, 29, 42, 44], "pkgcheck": [13, 15, 34, 36], "pkgconfig": [0, 2, 8, 14, 21, 23, 29, 35], "pkgutil": [3, 24], "place": [1, 6, 11, 12, 18, 20, 22, 27, 32, 33, 39, 41], "placehold": [13, 34], "plain": [2, 5, 6, 13, 23, 26, 27, 34], "plan": [11, 32], "platform": [11, 16, 18, 32, 37, 39, 43, 45], "platformtag": [18, 39], "platinclud": [16, 37], "platlib": [16, 37], "platstdlib": [16, 37], "player": [0, 4, 21, 25], "pleas": [5, 6, 8, 9, 12, 15, 16, 18, 19, 20, 26, 27, 29, 30, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45], "plot": [42, 44], "plu": [0, 21, 42, 44], "pluggi": [43, 45], "plugin": [1, 3, 5, 6, 8, 10, 22, 24, 26, 27, 29, 31, 43, 45], "pm": [6, 27], "pn": [0, 2, 4, 5, 6, 8, 9, 14, 18, 21, 23, 25, 26, 27, 29, 30, 35, 39, 42, 43, 44, 45], "pngcrush": [2, 23], "poetri": [1, 5, 6, 13, 22, 26, 27, 34], "poetry_cor": [20, 41], "point": [1, 5, 11, 13, 15, 22, 26, 32, 34, 36, 43, 45], "pointless": [5, 26], "poisson": [2, 23], "poissonboltzmann": [2, 23], "polib": [0, 21], "polici": [10, 19, 31, 40], "popd": [43, 45], "popt": [2, 23], "popul": [5, 15, 26, 36], "port": [5, 8, 10, 26, 29, 31], "portabl": [3, 24], "portag": [3, 5, 8, 10, 12, 14, 15, 19, 24, 26, 29, 31, 33, 35, 36, 40, 43, 45], "portage_elog_class": [20, 41], "posit": [5, 15, 19, 26, 36, 40], "posixpath": [19, 40], "possibl": [0, 2, 4, 5, 8, 9, 12, 14, 16, 17, 19, 21, 23, 25, 26, 29, 30, 33, 35, 37, 38, 40, 43, 45], "possibli": [5, 6, 27, 43, 45], "post": [6, 13, 15, 18, 27, 34, 36, 39, 43, 45], "postgr": [4, 25], "potenti": [7, 11, 15, 16, 19, 28, 32, 36, 37, 40], "power": [8, 29], "pp": [2, 8, 23, 29], "ppc": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "ppc64": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "pr": [16, 37], "practic": [8, 11, 12, 29, 32, 33], "pre": [43, 45], "prebuilt": [18, 39], "preced": [43, 45], "precis": [8, 9, 29, 30, 43, 45], "precompil": [12, 20, 33, 41], "predat": [18, 39], "predict": [11, 32, 42, 44], "prefac": [10, 31], "prefer": [1, 4, 5, 7, 8, 11, 12, 14, 15, 19, 22, 25, 26, 28, 29, 32, 33, 35, 36, 40, 43, 45], "prefix": [2, 8, 9, 15, 16, 23, 29, 30, 36, 37, 43, 45], "pregener": [5, 26], "prematur": [11, 15, 32, 36], "prepar": [8, 9, 20, 29, 30, 41, 42, 44], "preprocessor": [9, 30], "presenc": [5, 8, 26, 29], "present": [1, 5, 6, 15, 20, 22, 26, 27, 36, 41], "preserv": [6, 11, 15, 16, 27, 32, 36, 37], "presum": [2, 23], "pretti": [16, 37], "prevent": [4, 5, 10, 11, 25, 26, 31, 32, 42, 43, 44, 45], "previou": [1, 5, 12, 13, 16, 19, 22, 26, 33, 34, 37, 40], "previous": [12, 19, 33, 40], "primari": [5, 19, 26, 40, 43, 45], "primarili": [7, 11, 28, 32], "print": [0, 5, 8, 14, 19, 21, 26, 29, 35, 40, 43, 45], "prior": [2, 3, 5, 6, 8, 11, 12, 13, 16, 19, 20, 23, 24, 26, 27, 29, 32, 33, 34, 37, 40, 41, 43, 45], "privat": [13, 34], "proactiv": [15, 19, 36, 40], "probabl": [1, 6, 8, 13, 22, 27, 29, 34, 42, 44], "problem": [1, 3, 4, 5, 6, 8, 12, 15, 16, 17, 19, 20, 22, 24, 25, 26, 27, 29, 33, 36, 37, 38, 40, 41, 43, 45], "problemat": [3, 6, 10, 19, 24, 27, 31, 40], "proce": [12, 33], "process": [3, 5, 7, 12, 16, 20, 24, 26, 28, 33, 37, 41, 42, 44], "produc": [12, 15, 20, 33, 36, 41], "profil": [4, 6, 15, 25, 27, 36], "program": [1, 2, 5, 6, 11, 16, 19, 22, 23, 26, 27, 32, 37, 40, 43, 45], "programm": [0, 15, 21, 36], "progress": [12, 33], "proj": [5, 26], "project": [0, 1, 5, 8, 9, 10, 14, 17, 18, 19, 20, 21, 22, 26, 29, 30, 31, 35, 38, 39, 40, 41, 43, 45], "prolong": [20, 41], "prone": [0, 21], "propag": [42, 44], "proper": [2, 8, 23, 29], "properli": [6, 13, 27, 34], "properti": [43, 45], "protect": [19, 40], "protocol": [0, 2, 21, 23, 42, 44], "prototyp": [16, 37], "provid": [0, 1, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 21, 22, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 43, 45], "proxi": [3, 14, 24, 35], "psf": [5, 26], "psql": [14, 35], "psutil": [2, 23], "pth": [3, 24], "pub": [2, 23], "public": [0, 2, 4, 5, 6, 8, 11, 14, 21, 23, 25, 26, 27, 29, 32, 35, 42, 43, 44, 45], "publish": [15, 36], "pull": [4, 25], "pure": [0, 5, 6, 7, 8, 10, 11, 15, 18, 21, 26, 27, 28, 29, 31, 32, 36, 39, 43, 45], "purelib": [16, 37], "purpos": [0, 5, 6, 9, 12, 14, 16, 18, 21, 26, 27, 30, 33, 35, 37, 39, 42, 43, 44, 45], "push": [11, 12, 15, 32, 33, 36], "pushd": [43, 45], "put": [1, 8, 22, 29], "pv": [0, 2, 4, 5, 8, 14, 18, 21, 23, 25, 26, 29, 35, 39, 42, 43, 44, 45], "pwd": [12, 33], "pwman3": [4, 25], "py": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 19, 20, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 40, 41, 43, 45], "py2": [2, 8, 18, 23, 29, 39, 43, 45], "py3": [5, 18, 19, 26, 39, 40], "py_input_list": [43, 45], "pyarg": [43, 45], "pybytearray_check": [43, 45], "pyc": [2, 9, 20, 23, 30, 41], "pycargoebuild": [5, 26], "pycodestyl": [43, 45], "pycountri": [8, 29], "pydant": [12, 33], "pydiff": [8, 29], "pyduali": [42, 44], "pyext": [42, 44], "pygit2": [43, 45], "pygobject": [0, 14, 21, 35], "pyinc": [9, 30], "pylib": [9, 30], "pylist_getitem": [43, 45], "pymol": [2, 23], "pymongo": [2, 23], "pynslcd": [9, 30], "pyo": [2, 9, 20, 23, 30, 41], "pyopenssl": [8, 29], "pypa": [6, 27], "pyperclip": [43, 45], "pypi": [4, 5, 6, 8, 10, 11, 13, 25, 26, 27, 29, 31, 32, 34], "pypi_no_norm": [18, 39], "pypi_pn": [18, 39], "pypi_sdist_url": [18, 39], "pypi_wheel_filenam": [18, 39], "pypi_wheel_url": [18, 39], "pyproject": [1, 5, 7, 12, 20, 22, 26, 28, 33, 41, 43, 45], "pyproject2setuppi": [5, 6, 13, 26, 27, 34], "pyproject2toml": [6, 27], "pypy2": [9, 11, 30, 32], "pypy3": [1, 4, 5, 6, 8, 11, 12, 13, 15, 19, 20, 22, 25, 26, 27, 29, 32, 33, 34, 36, 40, 41, 43, 45], "pyqt": [15, 36], "pyqt5": [15, 36], "pyqtwebengin": [15, 36], "pyroot": [5, 26], "pyseri": [5, 26], "pysock": [8, 29], "pysrt": [16, 37], "pytabl": [5, 26], "pytag": [18, 39], "pytest": [0, 4, 5, 8, 10, 12, 15, 18, 21, 25, 26, 29, 31, 33, 36, 39], "pytest_cach": [43, 45], "pytest_disable_plugin_autoload": [19, 40], "pytest_fork": [19, 40], "pytest_plugin": [19, 40], "pytest_pyfunc_cal": [43, 45], "python": [3, 6, 17, 18, 19, 20, 24, 27, 38, 39, 40, 41], "python2": [2, 8, 9, 13, 23, 29, 30, 34, 42, 44], "python2_7": [2, 5, 6, 8, 13, 14, 23, 26, 27, 29, 34, 35, 42, 43, 44, 45], "python2_packag": [2, 23], "python3": [1, 3, 5, 9, 11, 13, 15, 16, 19, 20, 22, 24, 26, 30, 32, 34, 36, 37, 40, 41, 43, 45], "python3_": [0, 1, 2, 4, 5, 6, 8, 12, 21, 22, 23, 25, 26, 27, 29, 33, 42, 43, 44, 45], "python3_11": [3, 12, 24, 33], "python3_5": [8, 29], "python3_6": [0, 2, 4, 8, 14, 21, 23, 25, 29, 35], "python3_7": [4, 8, 25, 29], "python3_8": [3, 24], "python3_cmd": [2, 23], "python3_packag": [2, 23], "python_": [5, 8, 26, 29], "python_cflag": [16, 37], "python_check_dep": [0, 2, 8, 21, 23, 29], "python_compat": [0, 2, 4, 5, 6, 8, 10, 11, 12, 14, 15, 21, 23, 25, 26, 27, 29, 31, 32, 33, 35, 36, 42, 43, 44, 45], "python_compil": [3, 24], "python_compile_al": [5, 8, 26, 29], "python_configur": [2, 23], "python_configure_al": [5, 26], "python_copy_sourc": [2, 14, 23, 35], "python_dep": [0, 2, 4, 5, 8, 10, 14, 21, 23, 25, 26, 29, 31, 35, 42, 44], "python_doex": [9, 30], "python_dohead": [9, 30], "python_domodul": [2, 5, 9, 12, 14, 23, 26, 30, 33, 35, 42, 44], "python_doscript": [9, 14, 30, 35, 42, 44], "python_export": [13, 34], "python_fix_shebang": [9, 30], "python_foreach_impl": [1, 2, 8, 14, 22, 23, 29, 35], "python_gen": [13, 34], "python_gen_any_dep": [0, 2, 8, 21, 23, 29], "python_gen_cond_dep": [2, 4, 5, 8, 12, 13, 23, 25, 26, 29, 33, 34, 42, 43, 44, 45], "python_gen_impl_dep": [4, 25], "python_gen_usedep": [13, 34], "python_gen_useflag": [8, 29], "python_get": [13, 34], "python_get_cflag": [9, 30], "python_get_includedir": [8, 9, 13, 29, 30, 34], "python_get_lib": [9, 30], "python_get_library_path": [9, 13, 30, 34], "python_get_python_config": [9, 30], "python_get_scriptdir": [9, 30], "python_get_sitedir": [2, 3, 8, 9, 23, 24, 29, 30, 43, 45], "python_has_vers": [0, 2, 8, 21, 23, 29], "python_includedir": [13, 34], "python_instal": [2, 14, 23, 35], "python_install_al": [5, 26], "python_is_python3": [8, 13, 29, 34], "python_lib": [16, 37], "python_libpath": [13, 34], "python_moduleinto": [2, 5, 9, 14, 23, 26, 30, 35], "python_multi_usedep": [13, 34], "python_newex": [9, 30], "python_newscript": [5, 9, 26, 30], "python_optim": [2, 8, 9, 20, 23, 29, 30, 41], "python_pkg_dep": [12, 33], "python_prepare_al": [5, 19, 26, 40], "python_req_us": [2, 4, 5, 6, 8, 14, 23, 25, 26, 27, 29, 35, 42, 44], "python_requir": [1, 22], "python_required_us": [2, 4, 5, 8, 10, 14, 23, 25, 26, 29, 31, 35, 42, 44], "python_scriptinto": [9, 30], "python_setup": [0, 1, 2, 10, 13, 14, 21, 22, 23, 31, 34, 35, 42, 44], "python_single_target": [7, 11, 12, 28, 32, 33], "python_single_usedep": [4, 5, 13, 25, 26, 34, 42, 44], "python_target": [5, 7, 8, 11, 12, 26, 28, 29, 32, 33], "python_test": [4, 6, 8, 9, 12, 19, 25, 27, 29, 30, 33, 40, 43, 45], "python_test_al": [5, 26], "python_usedep": [0, 2, 4, 5, 8, 10, 12, 14, 15, 19, 21, 23, 25, 26, 29, 31, 33, 35, 36, 40, 42, 43, 44, 45], "python_vers": [16, 37], "python_wrapper_setup": [13, 34], "pythonhost": [5, 18, 26, 39], "pythonn": [1, 22], "pythonpath": [6, 27, 43, 45], "pythonprop": [42, 44], "pythonx_i": [1, 22], "pyx": [5, 26], "pyyaml": [2, 23], "qa": [5, 6, 9, 10, 12, 17, 26, 27, 30, 31, 33, 38], "qa_flags_ignor": [5, 26], "qawarn": [20, 41], "qemu": [14, 35], "qemu_python_instal": [14, 35], "qmp": [14, 35], "qsl": [42, 44], "qt": [0, 21], "queri": [10, 16, 31, 37], "question": [0, 1, 5, 7, 14, 18, 19, 21, 22, 26, 28, 35, 39, 40, 43, 45], "quick": [43, 45], "quickli": [5, 26], "quit": [2, 4, 6, 11, 12, 23, 25, 27, 32, 33], "quot": [4, 25, 42, 44], "r": [0, 2, 5, 9, 16, 21, 23, 26, 30, 37, 43, 45], "r1": [1, 4, 9, 10, 12, 15, 18, 20, 22, 25, 30, 31, 33, 36, 39, 41, 43, 45], "r1_": [5, 26], "r1_pkg_setup": [0, 2, 21, 23, 42, 44], "r1_python_compil": [3, 5, 24, 26], "r1_python_instal": [3, 5, 24, 26], "r1_python_install_al": [5, 26], "r1_python_prepare_al": [5, 19, 26, 40], "r1_run_phas": [3, 24], "r1_src_compil": [5, 26], "r1_src_instal": [5, 26], "r1_src_prepar": [3, 5, 16, 19, 24, 26, 37, 40], "r1_src_test": [5, 26, 43, 45], "r2": [43, 45], "race": [10, 19, 31, 40], "rais": [5, 16, 26, 37], "random": [19, 40], "randomli": [19, 40], "rang": [2, 5, 12, 23, 26, 33], "ranlib": [2, 23], "rare": [7, 9, 19, 28, 30, 40, 43, 45], "rather": [1, 5, 6, 8, 12, 15, 16, 17, 19, 20, 22, 26, 27, 29, 33, 36, 37, 38, 40, 41, 43, 45], "rb": [16, 37], "rc": [2, 11, 18, 23, 32, 39], "rdep": [3, 24], "rdepend": [0, 1, 2, 4, 5, 6, 8, 13, 14, 21, 22, 23, 25, 26, 27, 29, 34, 35, 42, 43, 44, 45], "re": [5, 8, 15, 26, 29, 36, 43, 45], "reach": [15, 36], "read": [1, 5, 16, 18, 22, 26, 37, 39, 43, 45], "readabl": [20, 41, 43, 45], "readi": [11, 12, 15, 32, 33, 36], "readlin": [2, 5, 8, 14, 23, 26, 29, 35], "readm": [2, 12, 20, 23, 33, 41], "readthedoc": [5, 26], "real": [3, 19, 20, 24, 40, 41, 43, 45], "realli": [13, 15, 19, 34, 36, 40, 43, 45], "reason": [2, 4, 5, 6, 11, 18, 19, 23, 25, 26, 27, 32, 39, 40, 43, 45], "rebas": [12, 33], "rebuild": [1, 6, 11, 22, 27, 32], "rebuild_swig": [2, 23], "recent": [2, 3, 5, 15, 23, 24, 26, 36, 43, 45], "recip": [10, 31], "recogn": [3, 5, 15, 16, 24, 26, 36, 37], "recommend": [2, 5, 7, 12, 13, 14, 15, 16, 18, 19, 23, 26, 28, 33, 34, 35, 36, 37, 39, 40, 42, 43, 44, 45], "recurs": [9, 15, 19, 30, 36, 40], "redefin": [5, 19, 26, 40], "redirect": [15, 36], "reduc": [19, 20, 40, 41], "reenabl": [12, 19, 33, 40], "refer": [0, 1, 5, 9, 11, 13, 14, 17, 18, 20, 21, 22, 26, 30, 32, 34, 35, 38, 39, 41, 42, 44], "refus": [1, 4, 11, 22, 25, 32], "regard": [5, 19, 26, 40], "regener": [5, 12, 26, 33], "regress": [11, 32], "regular": [3, 7, 20, 24, 28, 41, 43, 45], "reinstal": [12, 33], "reinvent": [5, 26], "reject": [8, 15, 16, 29, 36, 37], "rel": [19, 20, 40, 41, 43, 45], "relat": [5, 10, 12, 13, 15, 26, 31, 33, 34, 36, 43, 45], "relax": [2, 23], "releas": [0, 2, 8, 11, 12, 14, 16, 20, 21, 23, 29, 32, 33, 35, 37, 41], "relev": [5, 6, 13, 17, 19, 26, 27, 34, 38, 40, 43, 45], "reli": [5, 6, 11, 26, 27, 32, 43, 45], "reliabl": [17, 19, 38, 40, 43, 45], "remain": [4, 11, 12, 13, 25, 32, 33, 34], "remaind": [12, 33], "rememb": [4, 12, 18, 25, 33, 39], "remind": [6, 27], "remot": [12, 15, 33, 36, 43, 45], "remov": [3, 4, 5, 6, 10, 11, 13, 14, 15, 19, 20, 24, 25, 26, 27, 31, 32, 34, 35, 36, 40, 41, 43, 45], "renam": [13, 15, 16, 18, 20, 34, 36, 37, 39, 41], "renamed_shared_librari": [2, 23], "reorder": [13, 34], "repeat": [7, 14, 15, 20, 28, 35, 36, 41], "repeatedli": [11, 32], "replac": [0, 5, 6, 10, 11, 13, 15, 18, 19, 21, 26, 27, 31, 32, 34, 36, 39, 40], "replai": [43, 45], "replic": [14, 35], "repoman": [13, 34], "report": [1, 6, 9, 10, 12, 15, 22, 27, 30, 31, 33, 36, 43, 45], "repositori": [0, 5, 6, 12, 15, 20, 21, 26, 27, 33, 36, 41], "repres": [3, 5, 24, 26, 43, 45], "reproduc": [43, 45], "request": [5, 8, 10, 12, 15, 26, 29, 31, 33, 36], "requier": [6, 27], "requir": [0, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 31, 32, 33, 34, 35, 36, 37, 40, 41, 42, 44], "required_us": [0, 1, 2, 4, 5, 7, 8, 13, 14, 21, 22, 23, 25, 26, 28, 29, 34, 35, 42, 44], "rerun": [10, 31], "rerunfailur": [19, 40], "resembl": [8, 19, 29, 40], "reserv": [15, 36], "resmok": [2, 23], "resolv": [1, 5, 6, 16, 19, 22, 26, 27, 37, 40, 43, 45], "resourc": [6, 11, 12, 20, 27, 32, 33, 41], "resourcepath": [5, 26], "respect": [1, 4, 5, 12, 14, 15, 19, 20, 22, 25, 26, 33, 35, 36, 40, 41], "respons": [1, 5, 22, 26, 45], "restrict": [0, 2, 4, 5, 10, 19, 20, 21, 23, 25, 26, 31, 40, 41, 42, 43, 44, 45], "result": [0, 5, 6, 8, 9, 12, 15, 16, 17, 18, 19, 20, 21, 26, 27, 29, 30, 33, 36, 37, 38, 39, 40, 41, 43, 45], "retent": [19, 40], "retir": [3, 24], "retroact": [10, 31], "return": [0, 2, 8, 16, 20, 21, 23, 29, 37, 41, 43, 45], "reus": [9, 15, 30, 36], "reveal": [16, 37], "revers": [5, 7, 12, 15, 26, 28, 33, 36], "revert": [11, 32], "revis": [12, 15, 33, 36], "rewrit": [43, 45], "rewritten": [5, 26, 42, 43, 44, 45], "rf": [2, 23, 43, 45], "rich": [5, 26], "right": [6, 7, 27, 28], "riscv": [6, 8, 27, 29, 42, 44], "risk": [15, 36], "riverbankcomput": [8, 29], "rm": [2, 3, 5, 9, 23, 24, 26, 30, 43, 45], "root": [0, 5, 6, 13, 21, 26, 27, 34, 42, 43, 44, 45], "root_numpi": [5, 26], "rootdir": [43, 45], "rootpi": [5, 26], "roughli": [2, 9, 11, 13, 18, 23, 30, 32, 34, 39], "round": [12, 33], "rout": [15, 36], "routin": [10, 14, 31, 35], "rpath": [2, 23], "rpython": [11, 32], "rss": [15, 36], "rst": [5, 26], "rsync": [8, 29], "ruamel": [3, 24], "rule": [1, 2, 6, 7, 8, 13, 14, 15, 18, 22, 23, 27, 28, 29, 34, 35, 36, 39], "run": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 41], "run_in_build_dir": [2, 8, 14, 23, 29, 35], "runner": [1, 5, 7, 10, 22, 26, 28, 31], "runpi": [43, 45], "runtim": [1, 2, 3, 5, 8, 10, 13, 14, 15, 19, 22, 23, 24, 26, 29, 31, 34, 35, 36, 40], "rust": [10, 31], "s390": [0, 2, 4, 5, 6, 8, 21, 23, 25, 26, 27, 29, 42, 43, 44, 45], "sabyenc": [43, 45], "sabyenc3": [43, 45], "sabyenc3_wrapp": [43, 45], "safe": [13, 34], "samba": [2, 23, 42, 44], "same": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43], "sample_cod": [5, 26], "sandbox": [8, 20, 29, 41, 43, 45], "sanit": [11, 16, 32, 37, 43, 45], "satisfi": [0, 1, 8, 12, 21, 22, 29, 33], "sbin": [9, 30], "scan": [13, 15, 34, 36], "schema": [2, 15, 23, 36], "scheme": [16, 37], "sci": [2, 5, 23, 26, 42, 44], "scikit": [5, 26], "scikit_build_cor": [5, 26], "scipi": [2, 23], "scm": [5, 26], "scon": [7, 8, 10, 20, 28, 29, 31, 41], "scons_opt": [2, 23], "scons_target": [2, 23], "scons_var": [2, 23], "sconstruct": [2, 8, 23, 29], "scop": [0, 21], "scope": [1, 4, 5, 8, 13, 19, 22, 25, 26, 29, 34, 40, 43, 45], "scp": [12, 33], "script": [1, 2, 5, 6, 7, 8, 10, 11, 12, 14, 16, 22, 23, 26, 27, 28, 29, 31, 32, 33, 35, 37, 42, 44], "sdist": [5, 15, 18, 20, 26, 36, 39, 41, 43, 45], "sdp": [20, 41], "search": [3, 10, 15, 24, 31, 36], "second": [7, 13, 19, 20, 28, 34, 40, 41], "secondli": [43, 45], "secret": [0, 21], "section": [1, 5, 6, 7, 12, 15, 16, 18, 20, 22, 26, 27, 28, 33, 36, 37, 39, 41, 43, 45], "secur": [11, 12, 32, 33], "sed": [3, 5, 8, 14, 15, 16, 19, 24, 26, 29, 35, 36, 37, 40, 43, 45], "see": [5, 9, 16, 19, 20, 26, 30, 37, 40, 41, 43, 45], "seem": [43, 45], "select": [7, 8, 19, 28, 29, 40, 42, 44], "selenium": [15, 36], "self": [5, 16, 19, 26, 37, 40, 43, 45], "semi": [19, 40], "semver": [15, 36], "sens": [2, 23], "separ": [2, 5, 6, 7, 8, 11, 14, 15, 16, 19, 23, 26, 27, 28, 29, 32, 35, 36, 37, 40, 43, 45], "seri": [9, 30], "serial": [2, 5, 8, 15, 23, 26, 29, 36], "serv": [13, 34], "server": [43, 45], "servic": [0, 15, 21, 36, 43, 45], "session": [3, 24, 43, 45], "set": [2, 4, 5, 6, 7, 10, 11, 12, 14, 15, 16, 18, 19, 20, 23, 25, 26, 27, 28, 31, 32, 33, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "settl": [18, 39], "setup": [1, 3, 6, 7, 10, 13, 15, 19, 20, 22, 24, 27, 28, 31, 34, 36, 40, 41, 43, 45], "setup_requir": [1, 5, 19, 22, 26, 40], "setuptool": [1, 3, 4, 5, 7, 8, 12, 13, 15, 18, 19, 22, 24, 25, 26, 28, 29, 33, 34, 36, 39, 40, 43, 45], "setuptools_rust": [5, 26], "setuptools_scm": [1, 10, 22, 31, 43, 45], "setuptools_scm_pretend_vers": [5, 26], "sh": [0, 2, 4, 5, 6, 8, 12, 21, 23, 25, 26, 27, 29, 33, 42, 43, 44, 45], "share": [3, 5, 24, 26], "shebang": [1, 10, 11, 22, 31, 32, 43, 45], "shell": [0, 8, 14, 21, 29, 35, 43, 45], "shift": [6, 11, 27, 32], "ship": [5, 20, 26, 41], "shlinkflag": [2, 23], "short": [13, 19, 34, 40], "shortli": [1, 22], "should": [1, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "show": [12, 33], "side": [8, 11, 29, 32], "sidebar": [6, 27], "sign": [12, 15, 33, 36], "signal": [42, 43, 44, 45], "signatur": [11, 16, 32, 37], "signifi": [19, 40], "signific": [4, 12, 19, 25, 33, 40], "silent": [4, 16, 25, 37, 43, 45], "similar": [0, 2, 5, 14, 15, 16, 19, 20, 21, 23, 26, 35, 36, 37, 40, 41, 42, 43, 44, 45], "similarli": [0, 1, 5, 15, 18, 21, 22, 26, 36, 39], "simpl": [2, 5, 7, 13, 14, 17, 23, 26, 28, 34, 35, 38], "simpler": [7, 28], "simplest": [0, 2, 5, 7, 14, 19, 21, 23, 26, 28, 35, 40, 43, 45], "simpli": [15, 16, 17, 36, 37, 38, 43, 45], "simultan": [5, 11, 17, 26, 32, 38, 43, 45], "sinc": [1, 2, 3, 5, 6, 7, 11, 12, 13, 15, 16, 19, 22, 23, 24, 26, 27, 28, 32, 33, 34, 36, 37, 40, 43, 45], "singl": [0, 1, 4, 6, 9, 10, 14, 15, 16, 18, 19, 20, 21, 22, 25, 27, 30, 31, 35, 36, 37, 39, 40, 41, 43, 45], "sip": [5, 8, 15, 26, 29, 36], "sip_api_major_nr": [8, 29], "sipbuild": [5, 26], "siplib": [8, 29], "site": [3, 5, 6, 9, 10, 11, 16, 19, 24, 26, 27, 30, 31, 32, 37, 40, 43, 45], "six": [4, 8, 25, 29, 43, 45], "size": [20, 41], "skip": [4, 8, 10, 12, 16, 20, 25, 29, 31, 33, 37, 41], "skipif": [43, 45], "sleep": [16, 37], "slot": [0, 2, 4, 5, 6, 8, 11, 14, 21, 23, 25, 26, 27, 29, 32, 35, 42, 43, 44, 45], "slow": [11, 19, 32, 40], "slower": [19, 40], "slowli": [11, 15, 32, 36], "small": [18, 39], "smaller": [20, 41], "snappi": [2, 23], "snapshot": [10, 31, 43, 45], "snippet": [6, 16, 19, 20, 27, 37, 40, 41], "snowbal": [2, 23], "so": [1, 4, 5, 6, 11, 12, 15, 16, 18, 19, 22, 25, 26, 27, 32, 33, 36, 37, 39, 40, 42, 43, 44, 45], "socks5": [8, 29], "softwar": [0, 1, 4, 8, 14, 15, 16, 21, 22, 25, 29, 35, 36, 37, 43, 45], "solari": [0, 6, 21, 27, 42, 43, 44, 45], "sole": [13, 34], "solut": [3, 15, 16, 19, 20, 24, 36, 37, 40, 41, 43, 45], "solv": [4, 17, 25, 38], "some": [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 33, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "someth": [8, 9, 29, 30, 43, 45], "sometim": [1, 4, 5, 6, 7, 9, 11, 19, 22, 25, 26, 27, 28, 30, 32, 40, 43, 45], "soon": [15, 36], "sort": [2, 23], "sound": [42, 44], "sourc": [2, 3, 10, 12, 14, 17, 20, 23, 24, 31, 33, 35, 38, 41, 43, 45], "sourceforg": [14, 35, 42, 44], "space": [19, 40, 43, 45], "sparc": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "sparc64": [0, 6, 21, 27], "spawn": [1, 22], "speak": [6, 11, 27, 32], "spec": [15, 16, 36, 37], "special": [1, 3, 4, 5, 6, 16, 22, 24, 25, 26, 27, 37, 43, 45], "specif": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 18, 19, 20, 21, 22, 24, 25, 26, 27, 28, 29, 30, 31, 32, 34, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45], "specifi": [0, 1, 2, 5, 6, 7, 8, 14, 15, 18, 19, 20, 21, 22, 23, 26, 27, 28, 29, 35, 36, 39, 40, 41, 42, 43, 44, 45], "speed": [9, 19, 30, 40], "spew": [43, 45], "sphinx": [1, 3, 6, 7, 8, 10, 12, 15, 22, 24, 27, 28, 29, 31, 33, 36], "sphinx_pytest": [15, 36], "sphinx_rtd_them": [8, 29], "sphinxcontrib": [15, 36], "sphinxtrain": [9, 30], "sphobjinv": [15, 36], "split": [0, 5, 13, 16, 21, 26, 34, 37], "spulec": [4, 25], "spuriou": [1, 22], "sqlite": [4, 8, 25, 29], "sqlite3": [4, 25], "src": [2, 5, 9, 23, 26, 30, 43, 45], "src_": [5, 26], "src_compil": [2, 5, 6, 8, 14, 23, 26, 27, 29, 35, 43, 45], "src_configur": [2, 5, 8, 9, 13, 14, 23, 26, 29, 30, 34, 35, 42, 44], "src_instal": [2, 5, 8, 9, 14, 23, 26, 29, 30, 35, 42, 44], "src_prepar": [2, 3, 5, 8, 9, 14, 16, 19, 20, 23, 24, 26, 29, 30, 35, 37, 40, 41], "src_test": [2, 5, 6, 14, 23, 26, 27, 35, 43, 45], "src_unpack": [5, 26], "src_uri": [0, 2, 4, 5, 6, 8, 14, 15, 18, 21, 23, 25, 26, 27, 29, 35, 36, 39, 42, 43, 44, 45], "ssl": [8, 29], "sspl": [2, 23], "stabil": [10, 31], "stabl": [11, 12, 15, 32, 33, 36], "stage": [5, 11, 20, 26, 32, 41, 43, 45], "stage_dir": [2, 23], "stand": [11, 32], "standalon": [5, 12, 26, 33], "standard": [3, 4, 6, 7, 9, 10, 11, 14, 16, 24, 25, 27, 28, 30, 31, 32, 35, 37, 43, 45], "start": [3, 4, 5, 6, 11, 12, 15, 16, 18, 24, 25, 26, 27, 32, 33, 36, 37, 39, 43, 45], "state": [1, 22], "statement": [5, 20, 26, 41], "static": [5, 8, 26, 29], "statist": [43, 45], "statsmodel": [43, 45], "statu": [12, 33], "std": [2, 3, 23, 24], "stdin": [3, 24], "stdlib": [4, 13, 16, 25, 34, 37], "steep": [19, 40], "stemmer": [2, 23], "step": [5, 6, 7, 8, 14, 26, 27, 28, 29, 35], "stestr": [15, 36], "still": [1, 5, 6, 8, 11, 13, 16, 18, 20, 22, 26, 27, 29, 32, 34, 37, 39, 41, 43, 45], "stop": [13, 16, 18, 34, 37, 39], "store": [20, 41], "str": [16, 37], "strai": [10, 31], "stream": [5, 26], "streamlin": [13, 34], "strict": [43, 45], "strictli": [3, 5, 6, 15, 24, 26, 27, 36, 43, 45], "string": [0, 1, 4, 5, 8, 14, 16, 21, 22, 25, 26, 29, 35, 37, 42, 44], "stringif": [16, 37], "strip": [1, 3, 5, 11, 15, 19, 22, 24, 26, 32, 36, 40, 43, 45], "strongli": [5, 6, 15, 26, 27, 36], "structur": [12, 33, 43, 45], "stuff": [13, 34], "style": [3, 4, 5, 13, 16, 17, 19, 24, 25, 26, 34, 37, 38, 40, 43, 45], "sub": [1, 3, 7, 8, 10, 22, 24, 28, 29, 31, 43, 45], "sub_instal": [14, 35], "subclass": [1, 22], "subdir": [14, 35], "subdirectori": [6, 9, 27, 30], "submit": [6, 20, 27, 41], "submodul": [3, 24], "suboptim": [17, 38], "subpackag": [3, 20, 24, 41], "subsequ": [6, 18, 19, 20, 27, 39, 40, 41], "subset": [1, 4, 5, 7, 8, 11, 12, 14, 15, 20, 22, 25, 26, 28, 29, 32, 33, 35, 36, 41, 43, 45], "subslot": [11, 32], "substitut": [0, 4, 21, 25, 42, 44], "subtitl": [8, 29], "subtl": [43, 45], "success": [0, 19, 21, 40], "suffer": [19, 40], "suffici": [2, 5, 6, 7, 11, 14, 18, 23, 26, 27, 28, 32, 35, 39], "suffix": [5, 15, 18, 20, 26, 36, 39, 41], "suggest": [5, 8, 13, 15, 17, 19, 20, 26, 29, 34, 36, 38, 40, 41, 43, 45], "suit": [0, 1, 2, 5, 6, 7, 8, 9, 10, 12, 16, 19, 21, 22, 23, 26, 27, 28, 29, 30, 31, 33, 37, 40, 43, 45], "suitabl": [0, 7, 9, 14, 17, 18, 21, 28, 30, 35, 38, 39], "summar": [5, 16, 26, 37], "summari": [19, 40], "sundial": [2, 23], "sundri": [13, 34], "superset": [42, 44], "suppli": [6, 27], "support": [0, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45], "suppos": [5, 16, 26, 37], "supposedli": [19, 40], "sure": [5, 15, 19, 26, 36, 40, 43, 45], "suscept": [15, 36], "suspici": [3, 24], "swig": [2, 23, 42, 44], "switch": [4, 7, 9, 11, 12, 13, 15, 25, 28, 30, 32, 33, 34, 36, 43, 45], "sy": [2, 5, 8, 11, 14, 15, 16, 23, 26, 29, 32, 35, 36, 37, 43, 45], "symbol": [5, 26, 45], "symlink": [9, 30], "sync": [15, 19, 36, 40], "synopsi": [18, 39], "syntax": [4, 10, 11, 15, 20, 25, 31, 32, 36, 41], "system": [0, 3, 7, 8, 9, 10, 13, 14, 15, 17, 18, 19, 20, 21, 24, 28, 29, 30, 31, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45], "system_eigen": [2, 23], "system_fmt": [2, 23], "system_sundi": [2, 23], "systemd": [43, 45], "t": [5, 7, 8, 11, 13, 26, 28, 29, 32, 34], "tab": [15, 36, 43, 45], "tabl": [5, 12, 13, 15, 16, 19, 26, 33, 34, 36, 37, 40], "tag": [5, 12, 18, 26, 33, 39, 43, 45], "tag_build": [15, 36], "take": [0, 1, 2, 4, 5, 6, 7, 8, 9, 15, 16, 19, 21, 22, 23, 25, 26, 27, 28, 29, 30, 36, 37, 40, 43, 45], "taken": [5, 16, 26, 37, 43, 45], "talloc": [2, 23, 42, 44], "tar": [0, 2, 4, 5, 6, 8, 12, 14, 18, 21, 23, 25, 26, 27, 29, 33, 35, 39, 42, 43, 44, 45], "tarbal": [5, 12, 26, 33, 43, 45], "target": [2, 8, 9, 11, 12, 15, 23, 29, 30, 32, 33, 36, 42, 43, 44, 45], "task": [5, 8, 12, 26, 29, 33], "tauthon": [11, 32], "tc": [2, 9, 23, 30], "tcsh": [43, 45], "tdb": [2, 23], "team": [15, 36], "technic": [12, 18, 33, 39], "telepathi": [0, 21], "tell": [13, 34], "temp": [43, 45], "tempest": [15, 36], "templat": [0, 2, 4, 5, 15, 20, 21, 23, 25, 26, 36, 41, 42, 44], "temporari": [5, 6, 10, 26, 27, 31, 43, 45], "temporarili": [12, 13, 33, 34], "tend": [20, 41], "term": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "termcolor": [5, 26], "termin": [19, 40, 43, 45], "test": [0, 1, 2, 3, 7, 8, 10, 11, 12, 13, 17, 18, 21, 22, 23, 24, 28, 29, 31, 32, 33, 34, 38, 39, 42, 44], "test_arima": [43, 45], "test_babel_with_language_": [43, 45], "test_build_latex": [43, 45], "test_client": [19, 40], "test_close_to_now_": [12, 33], "test_comparison": [12, 33], "test_contextvar": [19, 40], "test_crc_pickl": [43, 45], "test_decod": [43, 45], "test_empty_size_pickl": [43, 45], "test_filenam": [19, 40], "test_gener": [19, 40], "test_https_warn": [4, 25], "test_leak": [19, 40], "test_loc": [19, 40], "test_login": [43, 45], "test_network": [43, 45], "test_null_byt": [43, 45], "test_polyglossia_with_language_": [43, 45], "test_pytest_plugin": [5, 26], "test_request": [4, 25], "test_start_params_bug": [43, 45], "test_sync": [19, 40], "test_sync_contextvar": [19, 40], "test_test_util": [5, 26], "test_testcase_no_app": [5, 26], "test_transport": [19, 40], "test_transport_work": [19, 40], "test_wrapped_case_is_collect": [19, 40], "testbitvector": [5, 26], "testcas": [19, 40], "testrequest": [4, 25], "tests_requir": [1, 5, 22, 26], "testsupport": [43, 45], "tevent": [2, 23], "text": [5, 8, 16, 26, 29, 37, 43, 45], "textual": [5, 26], "tgz": [14, 35], "than": [1, 2, 3, 5, 6, 7, 8, 11, 12, 15, 16, 17, 18, 19, 20, 22, 23, 24, 26, 27, 28, 29, 32, 33, 36, 37, 38, 39, 40, 41, 43, 45], "thei": [1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45], "them": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 33, 36, 37, 39, 40, 41, 42, 43, 44, 45], "theme": [5, 6, 8, 26, 27, 29], "themselv": [6, 20, 27, 41, 43, 45], "therefor": [1, 2, 5, 6, 7, 8, 11, 12, 15, 19, 20, 22, 23, 26, 27, 28, 29, 32, 33, 36, 40, 41, 43, 45], "thermodynam": [2, 23], "thi": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45], "thin": [6, 27, 43, 45], "thing": [13, 17, 34, 38], "think": [16, 37], "third": [5, 7, 13, 20, 26, 28, 34, 41], "thirdli": [43, 45], "those": [5, 6, 8, 9, 19, 26, 27, 29, 30, 40, 43, 45], "though": [8, 11, 29, 32], "thread": [2, 8, 19, 23, 29, 40, 42, 43, 44, 45], "three": [0, 1, 3, 9, 13, 16, 20, 21, 22, 24, 30, 34, 37, 41], "through": [3, 4, 5, 6, 8, 11, 16, 19, 24, 25, 26, 27, 29, 32, 37, 40], "throughout": [6, 27], "throw": [5, 16, 26, 37], "thumb": [1, 6, 7, 13, 15, 22, 27, 28, 34, 36], "tiff": [5, 26], "time": [1, 3, 4, 5, 6, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 22, 24, 25, 26, 27, 30, 31, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 45], "timeout": [10, 31, 43, 45], "tip": [10, 31, 43, 45], "titl": [15, 18, 36, 39], "tl": [4, 25], "tmp": [3, 5, 9, 19, 20, 24, 26, 30, 40, 41, 43, 45], "tmp_path_retention_polici": [19, 40], "tmpl": [20, 41], "todai": [16, 37], "todo": [2, 9, 12, 23, 30, 33], "toml": [1, 5, 7, 10, 12, 20, 22, 26, 28, 31, 33, 41, 43, 45], "tomldecodeerror": [16, 37], "tomli": [5, 12, 15, 26, 33, 36], "tomli_w": [16, 37], "tomlkit": [16, 37], "too": [5, 11, 19, 26, 32, 40, 43, 45], "tool": [1, 2, 5, 8, 14, 15, 16, 20, 22, 23, 26, 29, 35, 36, 37, 41, 43, 45], "toolchain": [2, 4, 8, 23, 25, 29], "toolkit": [8, 29], "top": [3, 5, 9, 10, 18, 19, 24, 26, 30, 31, 39, 40, 43, 45], "topic": [3, 17, 24, 38], "tornado": [19, 40], "total": [7, 19, 28, 40], "toward": [5, 26], "tox": [1, 5, 22, 26, 43, 45], "traceback": [3, 5, 24, 26, 43, 45], "track": [12, 15, 33, 36], "tradit": [3, 24], "tradition": [3, 24], "train": [8, 29], "trans2arab": [42, 44], "transform": [18, 39], "transit": [13, 15, 34, 36], "translat": [8, 18, 29, 39], "transport": [2, 23], "travel": [4, 25], "travi": [5, 26], "treat": [2, 19, 23, 40], "tree": [5, 12, 13, 20, 26, 33, 34, 41, 43, 45], "tri": [5, 26], "trial": [13, 34], "trigger": [6, 12, 19, 20, 27, 33, 40, 41, 43, 45], "trimesh": [20, 41], "trivial": [0, 5, 12, 16, 21, 26, 33, 37, 42, 44], "trolliu": [11, 32], "true": [0, 1, 2, 5, 6, 8, 12, 13, 16, 21, 22, 23, 26, 27, 29, 33, 34, 37, 43, 45], "trustm": [4, 25], "try": [1, 6, 8, 9, 11, 16, 19, 22, 27, 29, 30, 32, 37, 40, 43, 45], "tsa": [43, 45], "tslib": [5, 26], "tupl": [16, 37], "turn": [15, 36, 43, 45], "tut": [2, 23], "twice": [19, 40], "two": [1, 5, 6, 8, 9, 11, 13, 16, 19, 20, 22, 26, 27, 29, 30, 32, 34, 37, 40, 41, 42, 44], "txt": [5, 6, 12, 19, 26, 27, 33, 40], "type": [2, 3, 6, 13, 15, 16, 23, 24, 27, 34, 36, 37], "typeerror": [10, 31], "typic": [1, 14, 22, 35], "u": [15, 36], "ubuntu": [43, 45], "udev": [0, 21], "udevdir": [2, 8, 23, 29], "ugli": [13, 34], "unabl": [5, 15, 26, 36, 43, 45], "unblock": [12, 33], "unbundl": [12, 33], "unclear": [43, 45], "uncommon": [5, 15, 16, 26, 36, 37], "uncondit": [1, 2, 5, 10, 13, 14, 15, 22, 23, 26, 31, 34, 35, 36], "unconditioanlli": [43, 45], "uncondition": [0, 1, 2, 4, 5, 6, 8, 11, 20, 21, 22, 23, 25, 26, 27, 29, 32, 41, 42, 43, 44, 45], "undefin": [5, 26, 45], "under": [0, 1, 2, 3, 4, 5, 6, 8, 14, 21, 22, 23, 24, 25, 26, 27, 29, 35, 42, 43, 44, 45], "underli": [5, 6, 7, 19, 26, 27, 28, 40], "underscor": [5, 15, 18, 26, 36, 39, 43, 45], "understand": [0, 21], "understood": [11, 32], "undesir": [1, 5, 10, 19, 22, 26, 31, 40], "unexpect": [10, 20, 31, 41], "unexpectedli": [43, 45], "unfix": [19, 40], "unfortun": [13, 15, 16, 19, 20, 34, 36, 37, 40, 41, 43, 45], "unicod": [16, 37], "uninstal": [20, 41], "uniqu": [5, 14, 26, 35], "unit": [2, 23], "unittest": [5, 11, 16, 26, 32, 37, 43, 45], "univers": [43, 45], "unless": [5, 6, 8, 15, 18, 26, 27, 29, 36, 39], "unlik": [3, 5, 6, 11, 15, 24, 26, 27, 32, 36], "unmatch": [13, 34], "unnecessari": [14, 15, 35, 36, 42, 43, 44, 45], "unnecessarili": [5, 26], "unpack": [5, 18, 26, 39], "unpars": [16, 37], "unpredict": [5, 26], "unresolv": [5, 26], "unset": [5, 6, 26, 27], "unstabl": [19, 40], "unsupport": [8, 11, 29, 32], "until": [16, 37], "unus": 45, "unusu": [12, 33], "unzip": [5, 18, 26, 39], "up": [5, 6, 9, 11, 13, 14, 15, 17, 19, 20, 26, 27, 30, 32, 34, 35, 36, 38, 40, 41, 43, 45], "updat": [4, 6, 9, 11, 12, 16, 18, 25, 27, 30, 32, 33, 37, 39], "upload": [12, 33], "uppercas": [13, 15, 16, 18, 34, 36, 37, 39], "upstream": [1, 3, 4, 5, 6, 7, 9, 11, 12, 14, 15, 16, 18, 19, 20, 22, 24, 25, 26, 27, 28, 30, 32, 33, 35, 36, 37, 39, 40, 41, 43, 45], "uri": [15, 36], "url": [5, 10, 11, 15, 16, 26, 31, 32, 36, 37], "urllib": [16, 37], "urllib3": [8, 12, 29, 33], "urlpars": [16, 37], "urlsplit": [11, 32], "us": [1, 9, 10, 11, 12, 13, 15, 16, 18, 20, 22, 30, 31, 32, 33, 34, 36, 37, 39, 41], "usabl": [1, 11, 22, 32], "usag": [10, 18, 31, 39], "usb": [2, 8, 23, 29], "use_en": [42, 44], "use_pch": [2, 23], "use_pep517": [5, 26], "use_scon": [2, 8, 23, 29], "user": [2, 3, 5, 6, 7, 8, 11, 12, 15, 19, 23, 24, 26, 27, 28, 29, 32, 33, 36, 40, 42, 43, 44, 45], "userland": [14, 35], "userland_gnu": [8, 29], "userspac": [2, 23], "usex": [2, 5, 23, 26, 42, 44], "usng": [43, 45], "usr": [1, 2, 3, 5, 7, 8, 9, 19, 20, 22, 23, 24, 26, 28, 29, 30, 40, 41, 43, 45], "usual": [1, 3, 4, 5, 7, 11, 13, 15, 16, 19, 20, 22, 24, 25, 26, 28, 32, 34, 36, 37, 40, 41, 43, 45], "util": [1, 2, 4, 5, 7, 8, 9, 12, 15, 19, 20, 22, 23, 25, 26, 28, 29, 30, 33, 36, 40, 41, 42, 43, 44, 45], "utils_src_configur": [2, 23, 42, 44], "uucp": [2, 8, 23, 29], "v": [2, 4, 5, 10, 13, 14, 23, 25, 26, 31, 34, 35, 43, 45], "v2": [0, 2, 4, 5, 6, 8, 14, 21, 23, 25, 26, 27, 29, 35, 42, 43, 44, 45], "v3": [12, 33], "valid": [1, 5, 8, 15, 16, 20, 22, 26, 29, 36, 37, 41, 43, 45], "valu": [1, 5, 6, 9, 13, 18, 19, 22, 26, 27, 30, 34, 39, 40, 43, 45], "var": [43, 45], "vararg": [16, 37], "variabl": [0, 1, 5, 6, 8, 13, 14, 16, 18, 19, 21, 22, 26, 27, 29, 34, 35, 37, 39, 40, 42, 43, 44, 45], "variant": [10, 11, 16, 19, 31, 32, 37, 40, 43, 45], "variat": [10, 31], "variou": [1, 5, 6, 9, 13, 16, 22, 26, 27, 30, 34, 37], "varkw": [16, 37], "vast": [5, 26], "vc": [10, 31, 43, 45], "ve": [16, 37], "vendor": [12, 13, 33, 34], "venv": [5, 6, 13, 26, 27, 34, 43, 45], "verbatim": [16, 37], "verbos": [0, 15, 20, 21, 36, 41, 43, 45], "veri": [3, 4, 5, 6, 9, 11, 15, 17, 18, 19, 20, 24, 25, 26, 27, 30, 32, 36, 38, 39, 40, 41, 43, 45], "verifi": [0, 1, 5, 6, 8, 13, 20, 21, 22, 26, 27, 29, 34, 41, 43, 45], "version": [1, 2, 3, 5, 6, 7, 8, 10, 12, 13, 16, 17, 19, 22, 23, 24, 26, 27, 28, 29, 31, 33, 34, 37, 38, 40, 43, 45], "version_info": [16, 37], "versioningit": [15, 36], "via": [1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 22, 23, 24, 25, 27, 28, 29, 30, 31, 32, 33, 34, 35, 40, 42, 43, 44, 45], "video": [8, 29], "violat": [20, 41], "virtual": [0, 2, 8, 14, 21, 23, 29, 35], "virtualenv": [1, 6, 12, 22, 27, 33, 43, 45], "virtx": [43, 45], "visual": [2, 23], "vmd": [2, 23], "vmxcap": [14, 35], "voacap": [42, 44], "vulner": [11, 32], "vulnkei": [9, 30], "vv": [43, 45], "w": [18, 39], "wa": [0, 4, 5, 11, 12, 13, 16, 18, 19, 20, 21, 25, 26, 32, 33, 34, 37, 39, 40, 41, 43, 45], "waf": [10, 31, 42, 44], "waf_binari": [2, 23, 42, 44], "wai": [0, 5, 6, 9, 12, 13, 15, 19, 21, 26, 27, 30, 33, 34, 36, 40, 43, 45], "wait": [20, 41], "wall": [2, 23], "want": [6, 8, 27, 29, 43, 45], "warn": [2, 5, 10, 16, 23, 26, 31, 37, 43, 45], "watchfil": [15, 36], "watchgod": [15, 36], "wb": [16, 37], "wcwidth": [43, 45], "we": [3, 4, 6, 8, 11, 12, 14, 15, 17, 19, 20, 24, 25, 27, 29, 32, 33, 35, 36, 38, 40, 41], "web": [11, 32], "webencod": [43, 45], "webp": [5, 26], "websupport": [15, 36], "welcom": [17, 38], "well": [1, 5, 7, 8, 11, 13, 15, 18, 20, 22, 26, 28, 29, 32, 34, 36, 39, 41], "went": [6, 27], "were": [0, 2, 3, 8, 11, 12, 13, 16, 18, 20, 21, 23, 24, 29, 32, 33, 34, 37, 39, 41], "what": [16, 37], "wheel": [5, 10, 11, 12, 15, 19, 20, 26, 31, 32, 33, 36, 40, 41], "when": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 40, 41, 42, 43, 44, 45], "whenev": [1, 4, 9, 11, 14, 15, 19, 22, 25, 30, 32, 35, 36, 40, 42, 43, 44, 45], "where": [0, 3, 5, 6, 9, 11, 12, 14, 16, 18, 21, 24, 26, 27, 30, 32, 33, 35, 37, 39, 42, 43, 44, 45], "wherea": [16, 18, 37, 39], "whether": [0, 1, 4, 5, 6, 7, 15, 19, 21, 22, 25, 26, 27, 28, 36, 40, 42, 43, 44, 45], "which": [0, 6, 9, 10, 11, 14, 19, 21, 27, 30, 31, 32, 35, 40, 43, 45], "while": [0, 2, 3, 4, 5, 6, 7, 8, 11, 12, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 32, 33, 35, 36, 37, 38, 40, 41, 42, 43, 44, 45], "whitelist": [43, 45], "whl": [5, 18, 26, 39], "who": [5, 17, 26, 38, 43, 45], "whole": [4, 19, 25, 40, 43, 45], "wholli": [43, 45], "whom": [43, 45], "whose": [1, 5, 18, 22, 26, 39], "why": [5, 6, 10, 26, 27, 31], "wide": [15, 36, 43, 45], "wider": [2, 23], "widest": [5, 26], "widget": [14, 35], "wiki": [0, 4, 8, 9, 12, 14, 17, 21, 25, 29, 30, 33, 35, 38], "wildcard": [4, 25], "window": [11, 32], "wise": [7, 28], "wish": [3, 6, 24, 27, 43, 45], "within": [3, 5, 6, 12, 15, 17, 24, 26, 27, 33, 36, 38, 43, 45], "without": [1, 4, 10, 11, 13, 14, 15, 18, 19, 22, 25, 31, 32, 34, 35, 36, 39, 40, 43, 45], "wno": [2, 23], "won": [8, 29], "word": [5, 26], "work": [0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 21, 24, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 39, 40, 42, 43, 44], "workaround": [5, 20, 26, 41], "workdir": [2, 5, 18, 23, 26, 39], "workflow": [12, 33], "world": [19, 40], "worm": [16, 37], "worri": [5, 16, 26, 37], "worst": [16, 37, 43, 45], "worth": [5, 26], "worthwhil": [1, 22, 43], "would": [0, 2, 4, 5, 7, 11, 12, 14, 15, 16, 18, 21, 23, 25, 26, 28, 32, 33, 35, 36, 37, 39, 42, 43, 44, 45], "wrap": [0, 5, 6, 9, 13, 21, 26, 27, 30, 34, 43, 45], "wrapper": [0, 1, 6, 9, 13, 14, 21, 22, 27, 30, 34, 35, 43, 45], "write": [5, 6, 7, 12, 16, 17, 20, 26, 27, 28, 33, 37, 38, 41], "written": [0, 1, 5, 7, 10, 11, 16, 19, 21, 22, 26, 28, 31, 32, 37, 40], "wrong": [6, 13, 15, 27, 34, 36], "wrongli": [16, 20, 37, 41, 43, 45], "wstool": [15, 36], "www": [0, 2, 8, 14, 21, 23, 29, 35, 42, 44], "wx_gtk_ver": [2, 23, 42, 44], "wxpython": [2, 23, 42, 44], "x": [1, 5, 11, 16, 19, 22, 26, 32, 37, 40, 43, 45], "x11": [2, 23], "x64": [0, 4, 6, 8, 21, 25, 27, 29, 42, 43, 44, 45], "x86": [0, 2, 4, 5, 6, 8, 12, 14, 21, 23, 25, 26, 27, 29, 33, 35, 42, 43, 44, 45], "x86_64": [5, 26], "xbox": [2, 23], "xboxdrv": [2, 23], "xdg": [4, 25], "xdist": [10, 12, 31, 33, 43, 45], "xfail": [43, 45], "xml": [5, 6, 26, 27], "xmltodict": [5, 26], "xolox": [5, 26], "xvfb": [43, 45], "xz": [0, 4, 12, 14, 21, 25, 33, 35, 42, 44], "y": [1, 2, 11, 16, 22, 23, 32, 37], "yaml": [2, 3, 23, 24], "ye": [2, 23], "year": [11, 32], "yet": [3, 5, 8, 11, 24, 26, 29, 32, 42, 44], "yield": [16, 37], "yml": [5, 26], "yoda": [42, 44], "you": [1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45], "your": [2, 4, 5, 6, 7, 8, 11, 12, 15, 16, 18, 19, 20, 23, 25, 26, 27, 28, 29, 32, 33, 36, 37, 39, 40, 41, 43, 45], "yourself": [2, 4, 23, 25, 43, 45], "zero": [4, 15, 25, 36], "zip": [5, 6, 18, 26, 27, 39], "zlib": [2, 23], "zoneinfo": [4, 25], "zope": [3, 15, 24, 36], "zsi": [2, 23], "zstd": [2, 23]}, "titles": ["python-any-r1 \u2014 build-time dependency", "Common basics", "Integration with build systems written in Python", "Advanced concepts", "Advanced dependencies", "distutils-r1 \u2014 standard Python build systems", "distutils-r1 legacy concepts", "Choosing between Python eclasses", "Expert python-r1 usage", "Common helper functions", "Gentoo Python Guide", "Python interpreters", "Maintenance of Python implementations", "Migration guides", "python-r1 \u2014 multi-impl packages", "Python package maintenance", "Porting tips", "Preface", "pypi \u2014 helper eclass for PyPI archives", "pytest recipes", "QA checks and warnings", "python-any-r1 \u2014 build-time dependency", "Common basics", "Integration with build systems written in Python", "Advanced concepts", "Advanced dependencies", "distutils-r1 \u2014 standard Python build systems", "distutils-r1 legacy concepts", "Choosing between Python eclasses", "Expert python-r1 usage", "Common helper functions", "Gentoo Python Guide", "Python interpreters", "Maintenance of Python implementations", "Migration guides", "python-r1 \u2014 multi-impl packages", "Python package maintenance", "Porting tips", "Preface", "pypi \u2014 helper eclass for PyPI archives", "pytest recipes", "QA checks and warnings", "python-single-r1 \u2014 single-impl packages", "Tests in Python packages", "python-single-r1 \u2014 single-impl packages", "Tests in Python packages"], "titleterms": {"1": [16, 37], "10": [16, 37], "11": [16, 37], "12": [16, 37], "2": [15, 36], "3": [16, 37], "517": [5, 13, 20, 26, 34, 41, 43, 45], "7": [13, 34], "8": [13, 16, 34, 37], "9": [16, 37], "A": [42, 44], "In": [6, 27], "No": [16, 37], "The": [1, 5, 22, 26], "__legacy__": [20, 41], "_make_test_flaki": [19, 40], "abort": [43, 45], "access": [43, 45], "ad": [3, 12, 15, 24, 33, 36, 43, 45], "addit": [0, 5, 14, 21, 26, 35], "advanc": [3, 4, 24, 25], "alia": [16, 37], "altern": [11, 32], "an": [16, 19, 37, 40], "ani": [0, 8, 21, 29], "api": [8, 20, 29, 41], "ar": [3, 20, 24, 41], "archiv": [5, 18, 26, 39], "argument": [5, 19, 26, 40], "assert": [16, 37, 43, 45], "asyncio": [16, 37], "autodoc": [5, 26], "autoload": [19, 40], "autotool": [14, 35], "avoid": [19, 40], "backend": [5, 20, 26, 41], "backport": [11, 32], "base": [6, 16, 19, 27, 37, 40], "base64": [16, 37], "basic": [0, 1, 5, 21, 22, 26, 42, 43, 44, 45], "befor": [6, 27, 43, 45], "between": [7, 28], "binari": [18, 39], "bootstrap": [12, 33], "bpo43882": [16, 37], "build": [0, 1, 2, 5, 6, 7, 8, 12, 13, 14, 21, 22, 23, 26, 27, 28, 29, 33, 34, 35, 42, 44], "build_dir": [5, 26], "build_meta": [20, 41], "buildapi": [20, 41], "byte": [9, 20, 30, 41], "bytecod": [20, 41], "c": [5, 26, 43, 45], "call": [5, 26], "called_with": [16, 37], "can": [15, 36], "cargo": [5, 26], "case": [43, 45], "cffi": [4, 25], "chang": [12, 16, 33, 37], "charact": [16, 37], "check": [15, 20, 36, 41, 45], "checklist": [43, 45], "choos": [7, 28, 43, 45], "co": [15, 36], "combin": [8, 29], "command": [5, 26], "common": [1, 9, 22, 30], "compil": [9, 20, 30, 41], "concept": [3, 6, 24, 27], "condit": [0, 2, 4, 5, 14, 21, 23, 25, 26, 35, 42, 44], "config": [16, 37], "configur": [16, 37], "content": [10, 31], "coroutin": [16, 37], "correct": [43, 45], "cpython": [12, 33], "cr": [16, 37], "custom": [5, 18, 26, 39, 43, 45], "cycl": [11, 32], "cython": [5, 26], "d": [5, 26], "deadlock": [19, 40], "deal": [19, 40, 43, 45], "decodestr": [16, 37], "default": [16, 37], "dep": [15, 36], "depend": [0, 1, 2, 4, 5, 8, 14, 19, 21, 22, 23, 25, 26, 29, 35, 40, 42, 43, 44, 45], "deprec": [16, 20, 37, 41], "determin": [3, 24], "differ": [6, 8, 18, 27, 29, 39], "directori": [19, 40], "disabl": [19, 40], "disjoint": [8, 29], "distribut": [18, 39], "distutil": [5, 6, 7, 8, 16, 26, 27, 28, 29, 37], "distutils_enable_test": [43, 45], "distutils_use_setuptool": [6, 27], "document": [5, 20, 26, 41], "due": [19, 40, 43, 45], "eapi": [13, 15, 34, 36], "eclass": [7, 12, 18, 28, 33, 39], "enabl": [5, 26], "encodestr": [16, 37], "entri": [6, 27], "environ": [1, 22, 43, 45], "error": [16, 37], "exampl": [20, 41], "exist": [15, 36], "expert": [8, 29], "extens": [5, 26, 43, 45], "extra": [2, 23, 43, 45], "failur": [19, 40, 43, 45], "fallback": [16, 37], "feed": [15, 36], "fetch": [18, 39], "file": [19, 20, 40, 41, 43, 45], "filenam": [18, 39], "find": [1, 22], "first": [7, 28], "fix": [9, 30], "fixtur": [19, 40], "flag": [4, 25], "flaki": [19, 40], "flit": [20, 41], "flit_scm": [5, 26], "formatargspec": [16, 37], "found": [16, 19, 37, 40], "from": [1, 13, 22, 34], "function": [5, 9, 26, 30], "gener": [16, 18, 37, 39], "gentoo": [3, 10, 24, 31], "getargspec": [16, 37], "got": [19, 40], "gpy": [15, 36], "greenlet": [4, 25], "guarante": [11, 32], "guid": [10, 13, 31, 34], "hang": [19, 40], "hatch": [5, 26], "helper": [9, 18, 30, 39], "hierarch": [3, 24], "ht": [16, 37], "hybrid": [2, 23, 42, 44], "i": [43, 45], "impl": [2, 7, 14, 23, 28, 35, 42, 44], "implement": [8, 9, 11, 12, 15, 29, 30, 32, 33, 36], "import": [43, 45], "importerror": [43, 45], "importpathmismatcherror": [19, 40], "improv": [20, 41], "indic": [10, 31], "inform": [9, 30], "initi": [12, 33], "inspect": [16, 37], "instal": [2, 5, 6, 9, 14, 15, 20, 23, 26, 27, 30, 35, 36, 41, 42, 43, 44, 45], "integr": [2, 5, 23, 26], "internet": [43, 45], "interpret": [4, 8, 11, 12, 25, 29, 32, 33], "invalid": [16, 37], "keyword": [19, 40], "legaci": [3, 5, 6, 18, 24, 26, 27, 39], "level": [20, 41], "lf": [16, 37], "librari": [16, 37], "life": [11, 32], "list": [1, 15, 16, 22, 36, 37], "longer": [16, 37], "maintain": [15, 36], "mainten": [12, 15, 33, 36], "manual": [5, 14, 26, 35, 42, 44], "marker": [19, 40], "masonri": [20, 41], "match": [18, 39], "meson": [2, 23], "method": [16, 37], "migrat": [13, 34], "miss": [19, 40, 43, 45], "mode": [5, 26, 43, 45], "modern": [18, 39], "modul": [9, 20, 30, 41], "monitor": [15, 36], "more": [43, 45], "most": [1, 22], "multi": [2, 7, 14, 23, 28, 35], "multipl": [0, 11, 21, 32, 42, 44], "name": [15, 18, 19, 36, 39, 40], "namespac": [3, 24], "new": [3, 12, 15, 24, 33, 36], "non": [5, 26], "note": [12, 33], "now": [16, 37], "old": [13, 34], "option": [4, 5, 25, 26], "other": [6, 16, 19, 27, 37, 40], "out": [6, 27], "outdat": [15, 36], "overview": [7, 28], "packag": [1, 2, 3, 4, 5, 6, 7, 12, 14, 15, 16, 18, 20, 22, 23, 24, 25, 26, 27, 28, 33, 35, 36, 37, 39, 41, 42, 43, 44, 45], "packags": [], "parallel": [5, 19, 26, 40], "partial": [8, 29], "pass": [5, 26], "patchset": [12, 33], "path": [19, 40], "pdm": [5, 26], "pep": [5, 13, 20, 26, 34, 41, 43, 45], "phase": [5, 26, 43, 45], "pip": [15, 36], "pkg": [16, 37], "plugin": [19, 40], "poetri": [20, 41], "point": [6, 27], "polici": [15, 36], "port": [12, 15, 16, 33, 36, 37], "portag": [20, 41], "prefac": [17, 38], "prepar": [12, 33], "prevent": [19, 40], "problemat": [43, 45], "profil": [12, 33], "project": [6, 15, 27, 36], "pure": [2, 14, 23, 35], "py": [5, 26], "pypi": [12, 15, 18, 33, 36, 39, 43, 45], "pyproject": [6, 27], "pytest": [19, 40, 43, 45], "python": [0, 1, 2, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 21, 22, 23, 25, 26, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 42, 43, 44, 45], "python_compat": [1, 22], "python_compil": [5, 26], "python_configur": [5, 26], "python_dep": [1, 22], "python_instal": [5, 26], "python_prepar": [5, 26], "python_required_us": [1, 22], "python_setup": [8, 29], "python_test": [5, 26], "python_usedep": [13, 34], "qa": [20, 41], "queri": [9, 30], "r1": [0, 2, 5, 6, 7, 8, 13, 14, 21, 23, 26, 27, 28, 29, 34, 35, 42, 44], "race": [5, 26], "recip": [19, 40], "regular": [8, 29], "relat": [20, 41], "releas": [15, 36], "remov": [12, 16, 33, 37], "replac": [16, 37], "repologi": [15, 36], "report": [20, 41], "request": [4, 25], "requir": [43, 45], "rerun": [19, 40], "restrict": [8, 29], "retroact": [16, 37], "routin": [15, 36], "run": [19, 40, 43, 45], "runner": [19, 40, 43, 45], "runtim": [6, 7, 27, 28, 42, 44], "rust": [4, 5, 25, 26], "scon": [2, 23], "script": [9, 30], "set": [0, 8, 21, 29], "setup": [5, 26], "setuptool": [6, 20, 27, 41], "setuptools_scm": [5, 26], "shebang": [9, 30], "singl": [2, 5, 7, 13, 23, 26, 28, 34, 42, 44], "site": [20, 41], "skip": [19, 40, 43, 45], "snapshot": [5, 26], "sourc": [5, 6, 18, 26, 27, 39], "specif": [12, 33], "sphinx": [5, 26], "stabil": [11, 32], "standard": [5, 26], "strai": [20, 41], "strip": [16, 37], "structur": [3, 24], "sub": [5, 26], "suit": [4, 25], "support": [11, 15, 32, 36], "syntax": [13, 34], "sysconfig": [16, 37], "system": [1, 2, 5, 6, 12, 22, 23, 26, 27, 33], "tabl": [10, 31], "temporari": [19, 40], "test": [4, 5, 6, 15, 16, 19, 20, 25, 26, 27, 36, 37, 40, 41, 43, 45], "time": [0, 2, 7, 8, 14, 21, 23, 28, 29, 35, 42, 44], "timeout": [19, 40], "tip": [16, 37], "toml": [6, 16, 27, 37], "tomli": [16, 37], "tomllib": [16, 37], "top": [20, 41], "trigger": [16, 37], "type": [1, 22], "typeerror": [19, 40], "uncondit": [0, 21, 42, 44], "undesir": [43, 45], "unexpect": [19, 40], "url": [18, 39], "urlsplit": [16, 37], "us": [0, 2, 3, 4, 5, 6, 7, 8, 14, 19, 21, 23, 24, 25, 26, 27, 28, 29, 35, 40, 42, 43, 44, 45], "usag": [5, 8, 26, 29], "v": [6, 7, 27, 28], "variant": [5, 26], "variat": [6, 27], "vc": [5, 26], "verifi": [15, 36], "version": [4, 11, 15, 18, 25, 32, 36, 39], "via": [5, 15, 26, 36], "virtualx": [43, 45], "w": [16, 37], "waf": [2, 23], "warn": [19, 20, 40, 41], "wheel": [18, 39], "whether": [3, 24], "which": [15, 36], "why": [43, 45], "without": [5, 16, 26, 37], "work": 45, "written": [2, 23], "xdist": [19, 40]}}) \ No newline at end of file
diff --git a/guide/single.html b/guide/single.html
index 3da491f..627e5b3 100644
--- a/guide/single.html
+++ b/guide/single.html
@@ -311,7 +311,7 @@ can be installed via one of the installation helpers.</p>
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -392,7 +392,7 @@ can be installed via one of the installation helpers.</p>
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|
diff --git a/guide/test.html b/guide/test.html
index a564f77..6c4f10b 100644
--- a/guide/test.html
+++ b/guide/test.html
@@ -77,6 +77,9 @@ setting <code class="docutils literal notranslate"><span class="pre">RDEPEND</sp
</div>
<p>The valid values include:</p>
<ul class="simple">
+<li><p><code class="docutils literal notranslate"><span class="pre">import-check</span></code> for minimal import checking
+using <code class="docutils literal notranslate"><span class="pre">dev-python/pytest-import-check</span></code> (see: <a class="reference internal" href="#import-checking-packages-with-no-working-tests">Import-checking
+packages with no working tests</a>)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">pytest</span></code> for <code class="docutils literal notranslate"><span class="pre">dev-python/pytest</span></code></p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">setup.py</span></code> to call <code class="docutils literal notranslate"><span class="pre">setup.py</span> <span class="pre">test</span></code> (<em>deprecated</em>)</p></li>
<li><p><code class="docutils literal notranslate"><span class="pre">unittest</span></code> to use built-in unittest discovery</p></li>
@@ -306,6 +309,27 @@ dependencies. However, you need to make sure that it finds all tests
correctly (i.e. runs no less tests than the alternative) and that it
does not spew too much irrelevant output.</p>
</section>
+<section id="import-checking-packages-with-no-working-tests">
+<h2>Import-checking packages with no working tests<a class="headerlink" href="#import-checking-packages-with-no-working-tests" title="Link to this heading">¶</a></h2>
+<p>If the package has no tests at all (or the tests are completely
+unusable), the <code class="docutils literal notranslate"><span class="pre">import-check</span></code> option can be used instead. This option
+uses a dedicated pytest plugin to verify whether all installed Python
+packages can be imported. This includes both Python modules
+and compiled extensions, and therefore can e.g. detect undefined
+symbols.</p>
+<p>Since the function is based on pytest, <code class="docutils literal notranslate"><span class="pre">EPYTEST_IGNORE</span></code> can be used
+to skip files that are intentionally non-importable.</p>
+<p>Note that pytest will also run any tests found in the site-packages
+directory. If this is undesirable, a custom test phase can explicitly
+disable the default <code class="docutils literal notranslate"><span class="pre">python</span></code> plugin responsible for that, e.g.:</p>
+<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>distutils_enable_tests<span class="w"> </span>import-check
+
+python_test<span class="o">()</span><span class="w"> </span><span class="o">{</span>
+<span class="w"> </span>epytest<span class="w"> </span>-p<span class="w"> </span>no:python<span class="w"> </span>--import-check<span class="w"> </span>--pyargs<span class="w"> </span>foo
+<span class="o">}</span>
+</pre></div>
+</div>
+</section>
<section id="undesirable-test-dependencies">
<h2>Undesirable test dependencies<a class="headerlink" href="#undesirable-test-dependencies" title="Link to this heading">¶</a></h2>
<p>There is a number of packages that are frequently listed as test
@@ -683,7 +707,7 @@ into it for the purpose of testing. Note that <code class="docutils literal not
</div>
</div>
- <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
+ <div class="sphinxsidebar" role="navigation" aria-label="Main">
<div class="sphinxsidebarwrapper">
<h1 class="logo"><a href="index.html">Gentoo Python Guide</a></h1>
@@ -709,6 +733,7 @@ into it for the purpose of testing. Note that <code class="docutils literal not
<li class="toctree-l2"><a class="reference internal" href="#why-is-running-tests-important">Why is running tests important?</a></li>
<li class="toctree-l2"><a class="reference internal" href="#using-distutils-enable-tests">Using distutils_enable_tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="#choosing-the-correct-test-runner">Choosing the correct test runner</a></li>
+<li class="toctree-l2"><a class="reference internal" href="#import-checking-packages-with-no-working-tests">Import-checking packages with no working tests</a></li>
<li class="toctree-l2"><a class="reference internal" href="#undesirable-test-dependencies">Undesirable test dependencies</a></li>
<li class="toctree-l2"><a class="reference internal" href="#missing-test-files-in-pypi-packages">Missing test files in PyPI packages</a></li>
<li class="toctree-l2"><a class="reference internal" href="#importerrors-for-c-extensions">ImportErrors for C extensions</a></li>
@@ -769,7 +794,7 @@ into it for the purpose of testing. Note that <code class="docutils literal not
&#169;2020, Michał Górny, license: CC BY 4.0.
|
- Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.3.7</a>
+ Powered by <a href="https://www.sphinx-doc.org/">Sphinx 7.4.7</a>
&amp; <a href="https://alabaster.readthedocs.io">Alabaster 0.7.16</a>
|