From c384c60c6d7fb5d30f3f929c518e0b41e084c4c4 Mon Sep 17 00:00:00 2001 From: ankitjavalkar Date: Mon, 9 May 2016 13:00:04 +0530 Subject: - Adhere to 80 columns - add docstrings - Fix further tests --- yaksh/code_evaluator.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'yaksh/code_evaluator.py') diff --git a/yaksh/code_evaluator.py b/yaksh/code_evaluator.py index 1c11c00..aab99eb 100644 --- a/yaksh/code_evaluator.py +++ b/yaksh/code_evaluator.py @@ -89,6 +89,11 @@ class CodeEvaluator(object): self._change_dir(self.in_dir) def safe_evaluate(self, user_answer, test_case_data): + """ + Handles code evaluation along with compilation, signal handling + and Exception handling + """ + # Add a new signal handler for the execution of this code. prev_handler = create_signal_handler() success = False -- cgit