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 badouxn
Recipients badouxn, yselivanov
Date 2017-11-15.12:53:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510750403.35.0.213398074469.issue32034@psf.upfronthosting.co.za>
In-reply-to
Content
When using asyncio in combination with multiprocessing, a TypeError occur when readuntil() encounter an EOF instead of the delimiter.
readuntil return a IncompleteReadError exception which is pickled by the multiprocessing package.
The unpickling failed due to an argument being None. As noted in the following links, it fails:
https://stackoverflow.com/questions/16244923/how-to-make-a-custom-exception-class-with-multiple-init-args-pickleable

The error trace is: 
Exception in thread Thread-3:
Traceback (most recent call last):
  File "/usr/lib64/python3.6/threading.py", line 916, in _bootstrap_inner
    self.run()
  File "/usr/lib64/python3.6/threading.py", line 864, in run
    self._target(*self._args, **self._kwargs)
  File "/usr/lib64/python3.6/multiprocessing/pool.py", line 463, in _handle_results
    task = get()
  File "/usr/lib64/python3.6/multiprocessing/connection.py", line 252, in recv
    return _ForkingPickler.loads(r)
TypeError: __init__() missing 1 required positional argument: 'expected'


Fix proposed: 
Make the "expected" parameter of the IncompleteReadError exception class optional.
History
Date User Action Args
2017-11-15 12:53:23badouxnsetrecipients: + badouxn, yselivanov
2017-11-15 12:53:23badouxnsetmessageid: <1510750403.35.0.213398074469.issue32034@psf.upfronthosting.co.za>
2017-11-15 12:53:23badouxnlinkissue32034 messages
2017-11-15 12:53:23badouxncreate