diff options
Diffstat (limited to 'python/problems/while_and_if/consumers_anonymous')
-rw-r--r-- | python/problems/while_and_if/consumers_anonymous/common.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/problems/while_and_if/consumers_anonymous/common.py b/python/problems/while_and_if/consumers_anonymous/common.py index 5428cd9..c5df9cf 100644 --- a/python/problems/while_and_if/consumers_anonymous/common.py +++ b/python/problems/while_and_if/consumers_anonymous/common.py @@ -33,7 +33,7 @@ hint_type = { 'problematic_test_case': Hint('problematic_test_case'), } -def test(python, code): +def test(python, code, aux_code=''): # List of inputs: (expression to eval, stdin). test_in = [ (None, '10\n5\n0\n'), @@ -56,7 +56,7 @@ def test(python, code): ] # 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 @@ -79,7 +79,7 @@ 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 @@ -87,7 +87,7 @@ def hint(python, code): (None, '10\n5\n90\n'), (None, '2\n2\n2\n2\n2\n2\n2\n2\n2\n2\n')] - answer = python(code=code, inputs=test_in, timeout=1.0) + answer = python(code=aux_code+code, inputs=test_in, timeout=1.0) exc = get_exception_desc(answer[0][3]) if exc: if 'NameError' in answer[0][3]: |