summaryrefslogtreecommitdiff
path: root/python/problems/comprehensions/sumsquares/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/problems/comprehensions/sumsquares/common.py')
-rw-r--r--python/problems/comprehensions/sumsquares/common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/comprehensions/sumsquares/common.py b/python/problems/comprehensions/sumsquares/common.py
index bda561e..cd23c9c 100644
--- a/python/problems/comprehensions/sumsquares/common.py
+++ b/python/problems/comprehensions/sumsquares/common.py
@@ -18,7 +18,7 @@ hint_type = {
'no_comprehension': Hint('no_comprehension')
}
-def test(python, code):
+def test(python, code, aux_code=''):
func_name = 'sumsquares'
tokens = get_tokens(code)
ast = get_ast(code)
@@ -34,7 +34,7 @@ def test(python, code):
for l in in_out]
test_out = [l[1] for l in in_out]
- answers = python(code=code, inputs=test_in, timeout=1.0)
+ answers = python(code=aux_code+code, inputs=test_in, timeout=1.0)
n_correct = 0
tin, tout = None, None
for i, (ans, to) in enumerate(zip(answers, test_out)):
@@ -59,11 +59,11 @@ def test(python, code):
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