ThreadPoolExecutorPlus
ThreadPoolExecutorPlus copied to clipboard
A fully replaceable executor that makes it possible to reuse idle threads and shrink thread list when there's no heavy load.
Results
2
ThreadPoolExecutorPlus issues
Sort by
recently updated
recently updated
newest added
trafficstars
Fixes #4
In ThreadPoolExecutorPlus/thread.py, there is the following assignment for the variable QUEUE_ABOVE_PY_37: `QUEUE_ABOVE_PY_37 = True if 'SipleQueue' in dir(queue) else False` Since there is no "SipleQueue" in the queue module, this...