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/lists_and_for/counting | |
parent | 969812724912512740dbf037940a9e6770df19ed (diff) |
Python: add support for auxiliary code (like for Prolog)
Diffstat (limited to 'python/problems/lists_and_for/counting')
-rw-r--r-- | python/problems/lists_and_for/counting/common.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/lists_and_for/counting/common.py b/python/problems/lists_and_for/counting/common.py index 5438030..295ca57 100644 --- a/python/problems/lists_and_for/counting/common.py +++ b/python/problems/lists_and_for/counting/common.py @@ -26,7 +26,7 @@ hint_type = { 'final_hint': Hint('final_hint') } -def test(python, code): +def test(python, code, aux_code=''): test_xs = [[42, 5, 4, -7, 2, 42, -3, -4, 11, 42, 2], [42, 5, 4, -7, 2, 12, 42, -4, 11, 2], [5, 4, -7, 2, 12, -3, -4, 11, 2], @@ -57,7 +57,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: @@ -74,9 +74,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, 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 |