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 Anthony Sottile
Recipients Anthony Sottile
Date 2018-11-25.22:07:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1543183656.09.0.788709270274.issue35311@psf.upfronthosting.co.za>
In-reply-to
Content
`concurrent.futures` is affected as well:

```
import concurrent.futures

class E(Exception):
    def __init__(self, a1, a2):
        Exception.__init__(self, '{}{}'.format(a1, a2))

def f(_):
    raise E(1, 2)

with concurrent.futures.ProcessPoolExecutor(2) as exe:
    for _ in exe.map(f, (1,)):
        pass
```
History
Date User Action Args
2018-11-25 22:07:36Anthony Sottilesetrecipients: + Anthony Sottile
2018-11-25 22:07:36Anthony Sottilesetmessageid: <1543183656.09.0.788709270274.issue35311@psf.upfronthosting.co.za>
2018-11-25 22:07:36Anthony Sottilelinkissue35311 messages
2018-11-25 22:07:36Anthony Sottilecreate