I HAVE GENERATED YOUR NEW DOCS!
This commit is contained in:
@ -269,6 +269,11 @@
|
||||
<dd><p>Return self+value.</p>
|
||||
</dd></dl>
|
||||
|
||||
<dl class="py attribute">
|
||||
<dt class="sig sig-object py" id="kittycad.models.uuid.Uuid.__annotations__">
|
||||
<span class="sig-name descname"><span class="pre">__annotations__</span></span><em class="property"><span class="w"> </span><span class="p"><span class="pre">=</span></span><span class="w"> </span><span class="pre">{}</span></em><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.__annotations__" title="Permalink to this definition"></a></dt>
|
||||
<dd></dd></dl>
|
||||
|
||||
<dl class="py method">
|
||||
<dt class="sig sig-object py" id="kittycad.models.uuid.Uuid.__contains__">
|
||||
<span class="sig-name descname"><span class="pre">__contains__</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">key</span></span></em>, <em class="sig-param"><span class="o"><span class="pre">/</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.__contains__" title="Permalink to this definition"></a></dt>
|
||||
@ -727,19 +732,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">
|
||||
@ -752,16 +758,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">
|
||||
|
Reference in New Issue
Block a user