Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalther Neuper <neuper@neuper.(none)>2009-12-14 10:48:59 (GMT)
committer Walther Neuper <neuper@neuper.(none)>2009-12-14 10:48:59 (GMT)
commit4704dbc793d3e133a4aaabcdaa020f86e2d2ec06 (patch)
treed666caa7099e0c0df732fe3456cd7ba8294d17df
parent32bb72a307d7fdc84ff3263c6c6c3bca4c1c395f (diff)
extended comments
-rw-r--r--ReckonPrimer.activity/collection.py4
-rwxr-xr-xReckonPrimer.activity/exercise.py4
2 files changed, 5 insertions, 3 deletions
diff --git a/ReckonPrimer.activity/collection.py b/ReckonPrimer.activity/collection.py
index 387b919..c945d3c 100644
--- a/ReckonPrimer.activity/collection.py
+++ b/ReckonPrimer.activity/collection.py
@@ -21,11 +21,11 @@ class Collection:
def __init__(self, display, coach):
self._sett = Settings()
- #WN.LV diese Daten via pickle.load(...) holen
+ #WN.LV diese Daten via pickle.load(...) holen ############
self._data = [(self._sett.get_setting('addsub_simp'), []),
(self._sett.get_setting('passten'), []),
(self._sett.get_setting('times_div'), [])]
- #WN.LV [] ist die vorlaeufige Liste der errors
+ #WN.LV [] ist die vorlaeufige Liste der errors ###########
self._display = display
self._coach = coach
self._active_topic = None
diff --git a/ReckonPrimer.activity/exercise.py b/ReckonPrimer.activity/exercise.py
index c26b613..69ceeac 100755
--- a/ReckonPrimer.activity/exercise.py
+++ b/ReckonPrimer.activity/exercise.py
@@ -14,7 +14,9 @@ class Exercise:
[(None, errors), (settings, errors)], where None indicates,
that the settings are not changed by the Learner,
and settings indicates updates done by the Learner.
- The list allows to do an Exercise subsequently several times. """
+ The list allows to append the current errors to the previous ones,
+ and even to do an Exercise subsequently several times;
+ thus the most recent errors are at the end of the list. """
self._eval = []
""" The settings determine the generation of calculations.
The fields of the settings are determined by self._sett['topic'];