Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ThreadPoolExecutorPlus/thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,3 +323,6 @@ def shutdown(self, wait=True):
for t in self._threads:
t.join()
shutdown.__doc__ = _base.Executor.shutdown.__doc__

def __del__(self):
self.shutdown(wait=True)