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 ethan.furman
Recipients alexandre.vassalotti, barry, ethan.furman, pitrou, python-dev, serhiy.storchaka
Date 2014-02-08.00:00:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1391817655.47.0.806563406985.issue20534@psf.upfronthosting.co.za>
In-reply-to
Content
Ethan commented:
----------------
> I left the test for test_subclasses_without_getnewargs alone as the point of
> that test is to make sure that _make_class_unpicklable is working properly,
> not to see if we can somehow get any of it to pickle.

Serhiy replied:
---------------
> Without these changes pickling failed, but not because _make_class_unpicklable.

Well, the direct cause is that the Enum class in question failed to define __getnewargs__; the indirect cause is that without __getnewargs__ the metaclass will call _make_class_unpicklable.

So neither the enum nor its members should pickle.
History
Date User Action Args
2014-02-08 00:00:55ethan.furmansetrecipients: + ethan.furman, barry, pitrou, alexandre.vassalotti, python-dev, serhiy.storchaka
2014-02-08 00:00:55ethan.furmansetmessageid: <1391817655.47.0.806563406985.issue20534@psf.upfronthosting.co.za>
2014-02-08 00:00:55ethan.furmanlinkissue20534 messages
2014-02-08 00:00:55ethan.furmancreate