Skip to content

Commit 390c4f8

Browse files
committed
Website build
1 parent f0180c5 commit 390c4f8

File tree

4 files changed

+7
-17
lines changed

4 files changed

+7
-17
lines changed

2_programs_in_files.html

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ <h2><span class="section-number">2.7. </span>Testing frameworks<a class="headerl
645645
the practical details of including tests in your code here.</p>
646646
<p>There are a number of Python packages which support code testing. The
647647
concepts are largely similar so rather than get bogged down in the
648-
details of multiple frameworks, we will introduce <a class="reference external" href="https://docs.pytest.org/en/latest/index.html" title="(in pytest v6.3.0.dev88+gf6529fd3a)"><span class="xref std std-doc">pytest</span></a>, which is one of the most widely used. Pytest is simply a Python
648+
details of multiple frameworks, we will introduce <a class="reference external" href="https://docs.pytest.org/en/latest/index.html" title="(in pytest v6.3.0.dev93+g42d5545f4)"><span class="xref std std-doc">pytest</span></a>, which is one of the most widely used. Pytest is simply a Python
649649
package, so you can install it into your current environment using:</p>
650650
<div class="highlight-console notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> python3 -m pip install pytest
651651
</pre></div>
@@ -875,18 +875,13 @@ <h2><span class="section-number">2.10. </span>Exercises<a class="headerlink" hre
875875
</div>
876876
<p>You could also run iPython, import <a class="reference internal" href="fibonacci.html#module-fibonacci" title="fibonacci"><code class="xref py py-mod docutils literal notranslate"><span class="pre">fibonacci</span></code></a> and try out
877877
<a class="reference internal" href="fibonacci.html#fibonacci.fibonacci.fib" title="fibonacci.fibonacci.fib"><code class="xref py py-func docutils literal notranslate"><span class="pre">fibonacci.fib</span></code></a> yourself.</p>
878-
</div></div><div class="admonition note">
879-
<p class="admonition-title">Note</p>
880-
<p>The first GitHub classroom assignment for this module will be released at
881-
the start of term.</p>
882-
</div>
883-
<div class="proof proof-type-exercise" id="id7">
878+
</div></div><div class="proof proof-type-exercise" id="id7">
884879

885880
<div class="proof-title">
886881
<span class="proof-type">Exercise 2.3</span>
887882

888883
</div><div class="proof-content">
889-
<p>Accept the <a class="reference internal" href="not_released.html"><span class="doc">first Github Classroom assignment for this module</span></a> and clone it into your course folder. The assignment
884+
<p>Accept the <a class="reference external" href="https://classroom.github.com/a/VltGa-Xl">first Github Classroom assignment for this module</a> and clone it into your course folder. The assignment
890885
repository just contains a <code class="file docutils literal notranslate"><span class="pre">README</span></code> and some tests. Your job in the
891886
following exercises will be to populate it with the remaining content.</p>
892887
</div></div><div class="proof proof-type-exercise" id="id8">

_modules/example_code/square.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
<h1>Source code for example_code.square</h1><div class="highlight"><pre>
6161
<div class="viewcode-block" id="square"><a class="viewcode-back" href="../../example_code.html#example_code.square.square">[docs]</a><span></span><span class="k">def</span> <span class="nf">square</span><span class="p">(</span><span class="n">x</span><span class="p">):</span>
62-
<span class="k">return</span> <span class="n">x</span><span class="o">^</span><span class="mi">2</span></div>
62+
<span class="k">return</span> <span class="n">x</span> <span class="o">^</span> <span class="mi">2</span></div>
6363
</pre></div>
6464

6565
<div class="clearer"></div>

_sources/2_programs_in_files.rst.txt

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -917,15 +917,10 @@ Exercises
917917
You could also run iPython, import :mod:`fibonacci` and try out
918918
:func:`fibonacci.fib <fibonacci.fibonacci.fib>` yourself.
919919

920-
.. note::
921-
922-
The first GitHub classroom assignment for this module will be released at
923-
the start of term.
924-
925920
.. proof:exercise::
926921
927-
Accept the :doc:`first Github Classroom assignment for this module
928-
<not_released>` and clone it into your course folder. The assignment
922+
Accept the `first Github Classroom assignment for this module
923+
<https://classroom.github.com/a/VltGa-Xl>`__ and clone it into your course folder. The assignment
929924
repository just contains a :file:`README` and some tests. Your job in the
930925
following exercises will be to populate it with the remaining content.
931926

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)