summaryrefslogtreecommitdiff
path: root/python/problems/lists_and_for/contains_42/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/lists_and_for/contains_42/common.py')
-rw-r--r--python/problems/lists_and_for/contains_42/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/lists_and_for/contains_42/common.py b/python/problems/lists_and_for/contains_42/common.py
index dfaab56..9118c5e 100644
--- a/python/problems/lists_and_for/contains_42/common.py
+++ b/python/problems/lists_and_for/contains_42/common.py
@@ -28,7 +28,7 @@ hint_type = {
'final_hint_nobreak': Hint('final_hint_nobreak')
}
-def test(python, code):
+def test(python, code, aux_code=''):
tokens = get_tokens(code)
test_xs = [[42, 5, 4, -7, 2, 12, -3, -4, 11, 42, 2],
@@ -59,7 +59,7 @@ def test(python, code):
flags = re.DOTALL | re.MULTILINE)
# use python session to call tcode
- answers = python(code=tcode, inputs=[(None, None)], timeout=1.0)
+ answers = python(code=aux_code+tcode, inputs=[(None, None)], timeout=1.0)
output = answers[0][1]
if str(test_out[xs_i]) in output and \
@@ -80,9 +80,9 @@ def test(python, code):
hints.append({'id' : 'final_hint_nobreak'})
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, 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