summaryrefslogtreecommitdiff
path: root/yaksh/base_evaluator.py
diff options
context:
space:
mode:
authoradityacp2016-12-28 14:21:17 +0530
committeradityacp2016-12-28 14:21:17 +0530
commit537e3fb2e3ed637e1429ce815165b23d53b70ff7 (patch)
tree964ffdfd825947c14d15f19aca8b0c800e852742 /yaksh/base_evaluator.py
parent135ebb1ae4dbc5e1bc4297fa31413d89ac4405f3 (diff)
parent011ca73b4c1042ceb208974e57c11474ecea65f2 (diff)
downloadonline_test-537e3fb2e3ed637e1429ce815165b23d53b70ff7.tar.gz
online_test-537e3fb2e3ed637e1429ce815165b23d53b70ff7.tar.bz2
online_test-537e3fb2e3ed637e1429ce815165b23d53b70ff7.zip
Merge https://github.com/fossee/online_test into update_docs
Diffstat (limited to 'yaksh/base_evaluator.py')
-rw-r--r--yaksh/base_evaluator.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/yaksh/base_evaluator.py b/yaksh/base_evaluator.py
index ce1647f..071008f 100644
--- a/yaksh/base_evaluator.py
+++ b/yaksh/base_evaluator.py
@@ -62,15 +62,6 @@ class BaseEvaluator(object):
submit_f.write(user_answer.lstrip())
submit_f.close()
- def _set_test_code_file_path(self, ref_path=None, test_case_path=None):
- if ref_path and not ref_path.startswith('/'):
- ref_path = join(MY_DIR, ref_path)
-
- if test_case_path and not test_case_path.startswith('/'):
- test_case_path = join(MY_DIR, test_case_path)
-
- return ref_path, test_case_path
-
def _set_file_as_executable(self, fname):
os.chmod(fname, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR
| stat.S_IRGRP | stat.S_IWGRP | stat.S_IXGRP