diff options
author | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-10-06 14:40:16 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@fri.uni-lj.si> | 2016-10-06 14:41:03 +0200 |
commit | d29fed213caccc7bf2f66ed7a11b94b4bbcac3d1 (patch) | |
tree | 04f96da9e5a4ea6572db9700907959eae295305b /python/problems/functions/body_mass_index | |
parent | 969812724912512740dbf037940a9e6770df19ed (diff) |
Python: add support for auxiliary code (like for Prolog)
Diffstat (limited to 'python/problems/functions/body_mass_index')
-rw-r--r-- | python/problems/functions/body_mass_index/common.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/functions/body_mass_index/common.py b/python/problems/functions/body_mass_index/common.py index 4331e06..8ebf7cd 100644 --- a/python/problems/functions/body_mass_index/common.py +++ b/python/problems/functions/body_mass_index/common.py @@ -19,7 +19,7 @@ hint_type = { 'final_hint': Hint('final_hint') } -def test(python, code): +def test(python, code, aux_code=''): func_name = 'bmi' tokens = get_tokens(code) if not has_token_sequence(tokens, ['def', func_name]): @@ -36,7 +36,7 @@ def test(python, code): test_in = [(func_name+'(%s)'%str(l[0]), None) 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)): @@ -65,11 +65,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 |