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 serhiy.storchaka
Recipients badouxn, serhiy.storchaka, yselivanov
Date 2017-11-15.14:45:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1510757145.63.0.213398074469.issue32034@psf.upfronthosting.co.za>
In-reply-to
Content
This isn't so simple.

>>> from asyncio.streams import IncompleteReadError
>>> import pickle
>>> e1 = IncompleteReadError(b'abc', 10)
>>> e2 = pickle.loads(pickle.dumps(e1))
>>> print(e1)
3 bytes read on a total of 10 expected bytes
>>> print(e2)
44 bytes read on a total of None expected bytes
History
Date User Action Args
2017-11-15 14:45:45serhiy.storchakasetrecipients: + serhiy.storchaka, yselivanov, badouxn
2017-11-15 14:45:45serhiy.storchakasetmessageid: <1510757145.63.0.213398074469.issue32034@psf.upfronthosting.co.za>
2017-11-15 14:45:45serhiy.storchakalinkissue32034 messages
2017-11-15 14:45:45serhiy.storchakacreate