From 22321162f4a6e71a1d86187a8941088d971ac317 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Tue, 3 Mar 2020 01:55:54 -0800 Subject: [PATCH] Remove scrap comments. --- voussoirkit/threadpool.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/voussoirkit/threadpool.py b/voussoirkit/threadpool.py index 8d7fe9b..76fbd27 100644 --- a/voussoirkit/threadpool.py +++ b/voussoirkit/threadpool.py @@ -49,10 +49,8 @@ class ThreadPool: available = max(0, available) if available == 0: return - # print(f'Gonna start me some {available} jobs.') for job in list(self._jobs): if job.status == PENDING: - # print('starting', job) job.start() available -= 1 if available == 0: @@ -217,7 +215,6 @@ class Job: self.value = self.function(*self.args, **self.kwargs) self.status = FINISHED except Exception as exc: - # print(exc) self.exception = exc self.status = RAISED self._thread = None