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 barry
Recipients barry, docs@python
Date 2014-01-14.19:54:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389729284.21.0.174760794096.issue20261@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, actually, this is a regression in Python 3.4.  Let's amend the test class to include a __getnewargs__():

class Picky(object):
    """Options container that returns None for all options.
    """
    def __getstate__(self):
        return {}

    def __getnewargs__(self):
        return ()

    def __getattr__(self, attr):
        return None

This class is picklable in Python 2.7 - 3.3, but not in 3.4.
History
Date User Action Args
2014-01-14 19:54:44barrysetrecipients: + barry, docs@python
2014-01-14 19:54:44barrysetmessageid: <1389729284.21.0.174760794096.issue20261@psf.upfronthosting.co.za>
2014-01-14 19:54:44barrylinkissue20261 messages
2014-01-14 19:54:44barrycreate