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 davidparks21
Recipients asvetlov, davidparks21, yselivanov
Date 2019-09-20.00:14:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1568938453.53.0.350574393675.issue38229@roundup.psfhosted.org>
In-reply-to
Content
Minor correction to the minimal reproducible test case:

```
import multiprocessing
import aiohttp


connection_key = aiohttp.client_reqrep.ConnectionKey
ose = OSError('test')

e = aiohttp.client_exceptions.ClientConnectorError(connection_key, ose)
q = multiprocessing.Queue()

q.put(e)
q.get()
```
History
Date User Action Args
2019-09-20 00:14:13davidparks21setrecipients: + davidparks21, asvetlov, yselivanov
2019-09-20 00:14:13davidparks21setmessageid: <1568938453.53.0.350574393675.issue38229@roundup.psfhosted.org>
2019-09-20 00:14:13davidparks21linkissue38229 messages
2019-09-20 00:14:13davidparks21create