ThreadPoolExecutorPlus icon indicating copy to clipboard operation
ThreadPoolExecutorPlus copied to clipboard

QUEUE_ABOVE_PY_37 is Always False due to a Typo

Open ender-s opened this issue 2 years ago • 0 comments
trafficstars

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 expression always evaluates to False.

ender-s avatar Aug 25 '23 19:08 ender-s