Anthony Sottile <[email protected]> added the comment:
`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
```
----------
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue35311>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com