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 hodgestar
Recipients Arfrever, barry, benjamin.peterson, eric.snow, hodgestar, pitrou, rhettinger
Date 2014-02-16.17:26:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392571605.97.0.345586725158.issue16251@psf.upfronthosting.co.za>
In-reply-to
Content
I have an ugly work-around for those affected:

    def __getattr__(self, name):
        # work around for pickle bug in Python 3.4
        # see http://bugs.python.org/issue16251
        if name == "__getnewargs_ex__":
            raise AttributeError("%r has no attribute %r" % (type(self), name))
        ...
History
Date User Action Args
2014-02-16 17:26:46hodgestarsetrecipients: + hodgestar, barry, rhettinger, pitrou, benjamin.peterson, Arfrever, eric.snow
2014-02-16 17:26:45hodgestarsetmessageid: <1392571605.97.0.345586725158.issue16251@psf.upfronthosting.co.za>
2014-02-16 17:26:45hodgestarlinkissue16251 messages
2014-02-16 17:26:45hodgestarcreate