Skip to content

Instantly share code, notes, and snippets.

View mrx23dot's full-sized avatar

Mathieu Moreau mrx23dot

View GitHub Profile
@BinarSkugga
BinarSkugga / daemon_thread_pool.py
Created September 3, 2022 05:40
Daemon thread pool that uses daemon threads without the atexit handler
import os
import queue
import time
from concurrent.futures import Future
from queue import Empty
from threading import Event
from typing import Iterable
from kthread import KThread