Bug report
Bug description:
According to the documentation for concurrent.futures.wait, it:
Returns a named 2-tuple of sets. The first set, named done, contains the futures that completed (finished or cancelled futures) before the wait completed. The second set, named not_done, contains the futures that did not complete (pending or running futures).
In this example, however, it returns cancelled futures in not_done. Note the wait=True in the preceding executor.shutdown call, which should ensure futures are not cancelled between wait and print. task calls sleep to ensure at least one thread is pending when executor.shutdown is called, even on especially performant systems.
from concurrent.futures import ThreadPoolExecutor, wait
from time import sleep
def task():
sleep(1)
executor = ThreadPoolExecutor(max_workers=1)
futures = [executor.submit(task), executor.submit(task)]
executor.shutdown(wait=True, cancel_futures=True)
wait_return = wait(futures, timeout=0)
print(wait_return.not_done)
Considerations
- If we instead call
wait with timeout=None, the script hangs indefinitely.
- If we replace the call to
executor.shutdown with futures[1].cancel() (leave timeout=0), the cancelled future is similarly included in not_done. We can add print(futures[1].cancelled()) to ensure the cancellation is successful before the call to wait.
- Replacing both, however, produces the expected result.
I couldn't find an existing report; apologies if I missed it.
CPython versions tested on:
3.11
Operating systems tested on:
Linux, macOS
Linked PRs
Bug report
Bug description:
According to the documentation for
concurrent.futures.wait, it:In this example, however, it returns cancelled futures in
not_done. Note thewait=Truein the precedingexecutor.shutdowncall, which should ensure futures are not cancelled betweenwaitandprint.taskcallssleepto ensure at least one thread is pending whenexecutor.shutdownis called, even on especially performant systems.Considerations
waitwithtimeout=None, the script hangs indefinitely.executor.shutdownwithfutures[1].cancel()(leavetimeout=0), the cancelled future is similarly included innot_done. We can addprint(futures[1].cancelled())to ensure the cancellation is successful before the call towait.I couldn't find an existing report; apologies if I missed it.
CPython versions tested on:
3.11
Operating systems tested on:
Linux, macOS
Linked PRs