summaryrefslogtreecommitdiff
path: root/python/problems/lists_and_for/calculator_polish/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/lists_and_for/calculator_polish/common.py')
-rw-r--r--python/problems/lists_and_for/calculator_polish/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/lists_and_for/calculator_polish/common.py b/python/problems/lists_and_for/calculator_polish/common.py
index 790f116..cd18f3b 100644
--- a/python/problems/lists_and_for/calculator_polish/common.py
+++ b/python/problems/lists_and_for/calculator_polish/common.py
@@ -42,7 +42,7 @@ hint_type = {
'final_hint': Hint('final_hint')
}
-def test(python, code):
+def test(python, code, aux_code=''):
in_out = [
(['6 3 +'], [9]),
(['6 3 -'], [3]),
@@ -62,7 +62,7 @@ def test(python, code):
test_in = [(None, '\n'.join(s[0])+'\n') for s in in_out]
test_out = [s[1] for s in in_out]
# 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 = 0
@@ -83,11 +83,11 @@ def test(python, code):
hints.append({'id': 'final_hint'})
return passed, hints
-def hint(python, code):
+def hint(python, code, aux_code=''):
tokens = get_tokens(code)
# run one test first to see if there are any exceptions
- answer = python(code=code, inputs=[(None, None)], timeout=1.0)
+ answer = python(code=aux_code+code, inputs=[(None, None)], timeout=1.0)
exc = get_exception_desc(answer[0][3])
if exc: return exc