-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ProcessPoolExecutor swallows falsy Exceptions #132063
Comments
I think there is something wrong here in the cpython/Lib/concurrent/futures/_base.py Lines 393 to 400 in 6ab4ace
The test should be: if self._exception is not None: because if self._exception calls the __bool__ method of exception.
Edit: same problem here on line 443 cpython/Lib/concurrent/futures/process.py Lines 441 to 446 in 6ab4ace
|
Well spotted. Indeed, this should be changed to |
Unless they can make a silly bug, I think it's fine to keep them. However, unless @graingert wants to work on the issue itself, you may first fix the |
It's mandatory to work on both files This should fix the same issue with a |
Please feel free to work on this, thanks!
Thomas Grainger
…On Fri, 4 Apr 2025, 15:41 Duprat, ***@***.***> wrote:
It's mandatory to work on both files /Lib/concurrent/futures/process.py
*and* /Lib/concurrent/futures/_base.pyto fix this issue.
This should fix the same issue with a ThreadPoolExcecutor.
—
Reply to this email directly, view it on GitHub
<#132063 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADFATAV3324MMPIVXQ7JYL2X2KZHAVCNFSM6AAAAAB2OBLA4OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONZYHEZTGMRQGE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
[image: YvesDup]*YvesDup* left a comment (python/cpython#132063)
<#132063 (comment)>
It's mandatory to work on both files /Lib/concurrent/futures/process.py
*and* /Lib/concurrent/futures/_base.pyto fix this issue.
This should fix the same issue with a ThreadPoolExcecutor.
—
Reply to this email directly, view it on GitHub
<#132063 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AADFATAV3324MMPIVXQ7JYL2X2KZHAVCNFSM6AAAAAB2OBLA4OVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONZYHEZTGMRQGE>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Bug report
Bug description:
This program prints
None
, but should fail and print a tracebackCPython versions tested on:
CPython main branch, 3.14, 3.13, 3.12, 3.11, 3.10, 3.9
Operating systems tested on:
Linux
The text was updated successfully, but these errors were encountered: