summaryrefslogtreecommitdiff
path: root/python/problems/lists_and_for/divisors/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/lists_and_for/divisors/common.py')
-rw-r--r--python/problems/lists_and_for/divisors/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/lists_and_for/divisors/common.py b/python/problems/lists_and_for/divisors/common.py
index 429e212..d1615ff 100644
--- a/python/problems/lists_and_for/divisors/common.py
+++ b/python/problems/lists_and_for/divisors/common.py
@@ -24,7 +24,7 @@ hint_type = {
'last_number': Hint('last_number'),
}
-def test(python, code):
+def test(python, code, aux_code=''):
test_in = [
(None, '8\n'),
(None, '6\n'),
@@ -36,7 +36,7 @@ def test(python, code):
values = [8, 6, 5, 2, 15, 20]
# List of outputs: (expression result, stdout, stderr, exception).
- answers = python(code=code, inputs=test_in, timeout=1.0)
+ answers = python(code=aux_code+code, inputs=test_in, timeout=1.0)
outputs = [ans[1] for ans in answers]
n_correct, tin = 0, None
@@ -65,9 +65,9 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
-def hint(python, code):
+def hint(python, code, aux_code=''):
# run one test first to see if there are any exceptions
- answer = python(code=code, inputs=[(None, '8\n')], timeout=1.0)
+ answer = python(code=aux_code+code, inputs=[(None, '8\n')], timeout=1.0)
exc = get_exception_desc(answer[0][3])
if exc:
if 'ZeroDivisionError' in answer[0][3]: