Skip to content

Commit 3f1435d

Browse files
committed
update edition
1 parent 8a8845e commit 3f1435d

12 files changed

+36
-34
lines changed

doc/source/0_preface.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ it's better to watch the video *after* reading the relevant section.
126126
The videos are marked in the text by a blue box at the right hand side,
127127
containing the video number. This corresponds to the list of links at:
128128

129-
`https://object-oriented-python.github.io/edition1/videos.html
130-
<https://object-oriented-python.github.io/edition1/videos.html>`__
129+
`https://object-oriented-python.github.io/edition2/videos.html
130+
<https://object-oriented-python.github.io/edition2/videos.html>`__
131131

132132
The exercises
133133
.............
@@ -141,8 +141,8 @@ correct responses to a range of inputs. Tests like this provide immediate
141141
feedback and enable you to know how you are doing. Links to the skeleton code
142142
for each chapter are provided at:
143143

144-
`https://object-oriented-python.github.io/edition1/exercises.html
145-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
144+
`https://object-oriented-python.github.io/edition2/exercises.html
145+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
146146

147147

148148
Conventions employed

doc/source/10_further_object-oriented_features.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ Exercises
570570
.. only:: not book
571571

572572
Using the information on the `book website
573-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
573+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
574574
obtain the skeleton code for these exercises.
575575

576576
.. only:: book
@@ -613,5 +613,5 @@ Exercises
613613
in Python, so diving in and reading the source code is often an option if
614614
you really want to know how some part of the language works.
615615
616-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
617-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
616+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
617+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/2_programs_in_files.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ already familiar with Git and GitHub then you will also need to work through
10251025
.. only:: not book
10261026

10271027
Using the information on the `book website
1028-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
1028+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
10291029
create your chapter 2 exercise repository for this module and clone it
10301030
into your working folder. The exercise repository just contains a
10311031
:file:`README` and some tests. Your job in the following exercises will be
@@ -1106,5 +1106,5 @@ already familiar with Git and GitHub then you will also need to work through
11061106
.. [#book_repo] `https://github.com/object-oriented-python/object-oriented-programming
11071107
<https://github.com/object-oriented-python/object-oriented-programming>`__
11081108
1109-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
1110-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
1109+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
1110+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/3_objects.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ Exercises
965965
.. only:: not book
966966

967967
Using the information on the `book website
968-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
968+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
969969
obtain the skeleton code for these exercises. The skeleton code contains a
970970
:mod:`polynomial` package with a version of the :class:`Polynomial` class.
971971

@@ -1036,5 +1036,5 @@ Exercises
10361036

10371037
.. rubric:: Footnotes
10381038

1039-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
1040-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
1039+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
1040+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/4_style.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1258,7 +1258,7 @@ Exercises
12581258

12591259
The skeleton code on GitHub for this chapter's exercises contains a package
12601260
:mod:`life` which implements Conway's Game of Life. Using the information on the `book website
1261-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
1261+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
12621262
obtain the skeleton code for these exercises. Clone the repository into
12631263
your working folder and install the package in editable mode.
12641264

@@ -1390,5 +1390,5 @@ six oscillating blinkers:
13901390
users. However the PEPs having to do with style have wider
13911391
significance.
13921392
1393-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
1394-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
1393+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
1394+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/5_abstract_data_types.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -839,7 +839,7 @@ Exercises
839839
.. only:: not book
840840

841841
Using the information on the `book website
842-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
842+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
843843
obtain the skeleton code for these exercises. You will also need to install
844844
the pytest-timeout package.
845845

@@ -963,5 +963,5 @@ Exercises
963963

964964
.. rubric:: Footnotes
965965

966-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
967-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
966+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
967+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/6_exceptions.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@ Exercises
838838
.. only:: not book
839839

840840
Using the information on the `book website
841-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
841+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
842842
obtain the skeleton code for these exercises.
843843

844844
.. only:: book
@@ -904,5 +904,5 @@ Exercises
904904
.. [#function] "Function call" here includes :term:`method` calls and
905905
operations implemented using a :term:`special method`.
906906
907-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
908-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
907+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
908+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/7_inheritance.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ Exercises
778778
.. only:: not book
779779

780780
Using the information on the `book website
781-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
781+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
782782
obtain the skeleton code for these exercises.
783783

784784
.. only:: book
@@ -866,5 +866,5 @@ Exercises
866866

867867
.. rubric:: Footnotes
868868

869-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
870-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
869+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
870+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/8_debugging.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -869,7 +869,7 @@ Exercises
869869
The exercises work a little differently this week, because the objective is
870870
not to write code but to practice debugging techniques. The information on
871871
the `book website
872-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
872+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
873873
points not just to the skeleton code but also to an online quiz which will
874874
provide instant feedback on the questions below. You should access the
875875
skeleton code and then work through the quiz questions.
@@ -949,5 +949,5 @@ Exercises
949949
.. [#ufl] `https://github.com/object-oriented-python/ufl
950950
<https://github.com/object-oriented-python/ufl>`__
951951
952-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
953-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
952+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
953+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

doc/source/9_trees_and_directed_acyclic_graphs.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ Exercises
11891189
.. only:: not book
11901190

11911191
Using the information on the `book website
1192-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
1192+
<https://object-oriented-python.github.io/edition2/exercises.html>`__
11931193
obtain the skeleton code for these exercises. The exercises also make use
11941194
of the book repository which you installed in :ref:`in Chapter 2
11951195
<course_repo>`.
@@ -1252,5 +1252,5 @@ Exercises
12521252
also possible, and is a key feature of `the Julia programming language
12531253
<https://julialang.org>`_.
12541254
1255-
.. [#exercise_page] `https://object-oriented-python.github.io/edition1/exercises.html
1256-
<https://object-oriented-python.github.io/edition1/exercises.html>`__
1255+
.. [#exercise_page] `https://object-oriented-python.github.io/edition2/exercises.html
1256+
<https://object-oriented-python.github.io/edition2/exercises.html>`__

0 commit comments

Comments
 (0)