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 Nir Soffer, serhiy.storchaka, wbolster
Date 2017-09-28.07:05:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1506582325.72.0.466225441844.issue30977@psf.upfronthosting.co.za>
In-reply-to
Content
This change breaks pickle.

You should preserve forward and backward pickle compatibility.

1. Pickle data produced by old Python versions should be unpickleable with a new implementation. Implement __setstate__ for satisfying this.

2. Pickle data produced by a new implementation should be unpickleable in old Python versions. There are many ways to satisfy this, you should choose the most efficient.
History
Date User Action Args
2017-09-28 07:05:25serhiy.storchakasetrecipients: + serhiy.storchaka, wbolster, Nir Soffer
2017-09-28 07:05:25serhiy.storchakasetmessageid: <1506582325.72.0.466225441844.issue30977@psf.upfronthosting.co.za>
2017-09-28 07:05:25serhiy.storchakalinkissue30977 messages
2017-09-28 07:05:25serhiy.storchakacreate