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 <[email protected]>
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: <[email protected]>
2017-09-28 07:05:25serhiy.storchakalinkissue30977 messages
2017-09-28 07:05:25serhiy.storchakacreate