Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene committed Dec 25, 2023
1 parent 781a271 commit 0b8a46a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion dmoj/graders/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def __init__(self, judge, problem, language, source):
self.binary = self._generate_binary()
self.run_pretests_only = self.problem.meta.pretests_only
self._abort_requested = False
self._current_proc = None
self._batch_counter = 0
self._testcase_counter = 0

Expand Down
2 changes: 1 addition & 1 deletion dmoj/graders/bridged.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def check_result(self, case, result):
def _launch_process(self, case):
self._interactor_stdin_pipe, submission_stdout_pipe = os.pipe()
submission_stdin_pipe, self._interactor_stdout_pipe = os.pipe()
self._current_proc = self.binary.launch(
self.binary.launch(
time=self.problem.time_limit,
memory=self.problem.memory_limit,
symlinks=case.config.symlinks,
Expand Down
2 changes: 1 addition & 1 deletion dmoj/graders/standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def check_result(self, case, result):
return check

def _launch_process(self, case):
self._current_proc = self.binary.launch(
self.binary.launch(
time=self.problem.time_limit,
memory=self.problem.memory_limit,
symlinks=case.config.symlinks,
Expand Down

0 comments on commit 0b8a46a

Please sign in to comment.