This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author underyx
Recipients underyx
Date 2019-01-30.16:06:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1548864416.11.0.414806369535.issue35860@roundup.psfhosted.org>
In-reply-to
Content
ProcessPoolExecutor's subprocesses normally transparently proxy exceptions
raised within a child to the parent process.

One special case I bumped into however causes a crash
within the stdlib code responsible for communication.
The special case is triggered when both of these are true:

1) The exception being raised uses `*` to mark arguments as keyword-only
2) The exception being raised sets a positional argument for Exception: `super().__init__("test")`

I have attached a file which demonstrates what happens
when only 1), only 2), and both 1) and 2) are true.

Running the file with Python 3.7.2 will result in this output:

```
<function works1 at 0x1010070d0> raised Works1('test')

<function works2 at 0x1016ae2f0> raised Works2()

<function breaks at 0x1016ae378> raised BrokenProcessPool('A process in the process pool was terminated abruptly while the future was running or pending.')
```

The expected result for the third call would be keeping the executor usable and printing this:

```
<function breaks at 0x1016ae378> raised Breaks('test')
```
History
Date User Action Args
2019-01-30 16:06:59underyxsetrecipients: + underyx
2019-01-30 16:06:56underyxsetmessageid: <1548864416.11.0.414806369535.issue35860@roundup.psfhosted.org>
2019-01-30 16:06:56underyxlinkissue35860 messages
2019-01-30 16:06:55underyxcreate