Skip to content

Commit 581fce1

Browse files
committed
Website build
1 parent 17c8388 commit 581fce1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

10_trees_and_directed_acyclic_graphs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ <h3><span class="section-number">10.2.2. </span>Traversing <a class="reference i
593593
<code class="xref py py-class docutils literal notranslate"><span class="pre">Expression</span></code> should implement everything that is the same for all nodes. What
594594
will that comprise?</p>
595595
<dl>
596-
<dt><code class="xref py py-meth docutils literal notranslate"><span class="pre">__init__()</span></code></dt><dd><p>The constuctor will take a <a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.9)"><code class="xref py py-class docutils literal notranslate"><span class="pre">tuple</span></code></a> of operands, since every
596+
<dt><code class="xref py py-meth docutils literal notranslate"><span class="pre">__init__()</span></code></dt><dd><p>The constructor will take a <a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#tuple" title="(in Python v3.9)"><code class="xref py py-class docutils literal notranslate"><span class="pre">tuple</span></code></a> of operands, since every
597597
expression has operands (even if terminals have zero operands).</p>
598598
</dd>
599599
<dt><a class="reference external" href="https://docs.python.org/3/reference/datamodel.html#object.__add__" title="(in Python v3.9)"><code class="xref py py-meth docutils literal notranslate"><span class="pre">__add__()</span></code></a>, <a class="reference external" href="https://docs.python.org/3/reference/datamodel.html#object.__sub__" title="(in Python v3.9)"><code class="xref py py-meth docutils literal notranslate"><span class="pre">__sub__()</span></code></a>, <a class="reference external" href="https://docs.python.org/3/reference/datamodel.html#object.__mul__" title="(in Python v3.9)"><code class="xref py py-meth docutils literal notranslate"><span class="pre">__mul__()</span></code></a>, <a class="reference external" href="https://docs.python.org/3/reference/datamodel.html#object.__truediv__" title="(in Python v3.9)"><code class="xref py py-meth docutils literal notranslate"><span class="pre">__truediv__()</span></code></a>, <a class="reference external" href="https://docs.python.org/3/reference/datamodel.html#object.__pow__" title="(in Python v3.9)"><code class="xref py py-meth docutils literal notranslate"><span class="pre">__pow__()</span></code></a></dt><dd><p>Implementing the <a class="reference internal" href="3_objects.html#term-special-method"><span class="xref std std-term">special methods</span></a> for arithmetic is

9_debugging.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ <h4><span class="section-number">9.7.3.3. </span>Running the bisection<a class="
668668
<p>First, check that you are up to date with <code class="docutils literal notranslate"><span class="pre">main</span></code> (or whatever your current
669669
branch is called). And that you know the commit id you want to start from. To
670670
set up the bisection we run:</p>
671-
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> git bisect HEAD 66a10d5d374de796827ac3152f0c507a46b73d60 --
671+
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> git bisect start 66a10d5d374de796827ac3152f0c507a46b73d60 HEAD --
672672
</pre></div>
673673
</div>
674674
<p>Obviously you replace the commit ID with your starting point. <code class="docutils literal notranslate"><span class="pre">HEAD</span></code> is a git

_sources/10_trees_and_directed_acyclic_graphs.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ Let's consider what would be needed at each layer of the hierarchy.
529529
will that comprise?
530530

531531
:meth:`__init__`
532-
The constuctor will take a :class:`tuple` of operands, since every
532+
The constructor will take a :class:`tuple` of operands, since every
533533
expression has operands (even if terminals have zero operands).
534534

535535
:meth:`~object.__add__`, :meth:`~object.__sub__`, :meth:`~object.__mul__`, :meth:`~object.__truediv__`, :meth:`~object.__pow__`

_sources/9_debugging.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ set up the bisection we run:
631631

632632
.. code-block:: console
633633
634-
$ git bisect HEAD 66a10d5d374de796827ac3152f0c507a46b73d60 --
634+
$ git bisect start 66a10d5d374de796827ac3152f0c507a46b73d60 HEAD --
635635
636636
Obviously you replace the commit ID with your starting point. ``HEAD`` is a git
637637
shorthand for the current state of the repository, so it's a suitable end point

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)