I HAVE GENERATED YOUR NEW DOCS!

This commit is contained in:
github-actions[bot]
2023-05-04 08:11:37 +00:00
parent cb1bc5f3cd
commit 4bb01c8473
1164 changed files with 78432 additions and 1003 deletions

View File

@ -376,13 +376,13 @@
<td><p>Partition the string into three parts using the given separator.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#kittycad.models.uuid.Uuid.rsplit" title="kittycad.models.uuid.Uuid.rsplit"><code class="xref py py-obj docutils literal notranslate"><span class="pre">rsplit</span></code></a>([sep, maxsplit])</p></td>
<td><p>Return a list of the words in the string, using sep as the delimiter string.</p></td>
<td><p>Return a list of the substrings in the string, using sep as the separator string.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#kittycad.models.uuid.Uuid.rstrip" title="kittycad.models.uuid.Uuid.rstrip"><code class="xref py py-obj docutils literal notranslate"><span class="pre">rstrip</span></code></a>([chars])</p></td>
<td><p>Return a copy of the string with trailing whitespace removed.</p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="#kittycad.models.uuid.Uuid.split" title="kittycad.models.uuid.Uuid.split"><code class="xref py py-obj docutils literal notranslate"><span class="pre">split</span></code></a>([sep, maxsplit])</p></td>
<td><p>Return a list of the words in the string, using sep as the delimiter string.</p></td>
<td><p>Return a list of the substrings in the string, using sep as the separator string.</p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="#kittycad.models.uuid.Uuid.splitlines" title="kittycad.models.uuid.Uuid.splitlines"><code class="xref py py-obj docutils literal notranslate"><span class="pre">splitlines</span></code></a>([keepends])</p></td>
<td><p>Return a list of the lines in the string, breaking at line boundaries.</p></td>
@ -879,19 +879,20 @@ and the original string.</p>
<dl class="py method">
<dt class="sig sig-object py" id="kittycad.models.uuid.Uuid.rsplit">
<span class="sig-name descname"><span class="pre">rsplit</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">sep</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">maxsplit</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">-</span> <span class="pre">1</span></span></em><span class="sig-paren">)</span><a class="reference external" href="https://github.com/kittycad/kittycad.py/kittycad/models/uuid.py"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#kittycad.models.uuid.Uuid.rsplit" title="Permalink to this definition"></a></dt>
<dd><p>Return a list of the words in the string, using sep as the delimiter string.</p>
<dd><p>Return a list of the substrings in the string, using sep as the separator string.</p>
<blockquote>
<div><dl class="simple">
<dt>sep</dt><dd><p>The delimiter according which to split the string.
None (the default value) means split according to any whitespace,
and discard empty strings from the result.</p>
<div><dl>
<dt>sep</dt><dd><p>The separator used to split the string.</p>
<p>When set to None (the default value), will split on any whitespace
character (including \n \r \t \f and spaces) and will discard
empty strings from the result.</p>
</dd>
<dt>maxsplit</dt><dd><p>Maximum number of splits to do.
<dt>maxsplit</dt><dd><p>Maximum number of splits (starting from the left).
-1 (the default value) means no limit.</p>
</dd>
</dl>
</div></blockquote>
<p>Splits are done starting at the end of the string and working to the front.</p>
<p>Splitting starts at the end of the string and works to the front.</p>
</dd></dl>
<dl class="py method">
@ -904,16 +905,22 @@ and discard empty strings from the result.</p>
<dl class="py method">
<dt class="sig sig-object py" id="kittycad.models.uuid.Uuid.split">
<span class="sig-name descname"><span class="pre">split</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">sep</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">maxsplit</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">-</span> <span class="pre">1</span></span></em><span class="sig-paren">)</span><a class="reference external" href="https://github.com/kittycad/kittycad.py/kittycad/models/uuid.py"><span class="viewcode-link"><span class="pre">[source]</span></span></a><a class="headerlink" href="#kittycad.models.uuid.Uuid.split" title="Permalink to this definition"></a></dt>
<dd><p>Return a list of the words in the string, using sep as the delimiter string.</p>
<dl class="simple">
<dt>sep</dt><dd><p>The delimiter according which to split the string.
None (the default value) means split according to any whitespace,
and discard empty strings from the result.</p>
<dd><p>Return a list of the substrings in the string, using sep as the separator string.</p>
<blockquote>
<div><dl>
<dt>sep</dt><dd><p>The separator used to split the string.</p>
<p>When set to None (the default value), will split on any whitespace
character (including \n \r \t \f and spaces) and will discard
empty strings from the result.</p>
</dd>
<dt>maxsplit</dt><dd><p>Maximum number of splits to do.
<dt>maxsplit</dt><dd><p>Maximum number of splits (starting from the left).
-1 (the default value) means no limit.</p>
</dd>
</dl>
</div></blockquote>
<p>Note, str.split() is mainly useful for data that has been intentionally
delimited. With natural text that includes punctuation, consider using
the regular expression module.</p>
</dd></dl>
<dl class="py method">