Message211331
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))
... |
|
| Date |
User |
Action |
Args |
| 2014-02-16 17:26:46 | hodgestar | set | recipients:
+ hodgestar, barry, rhettinger, pitrou, benjamin.peterson, Arfrever, eric.snow |
| 2014-02-16 17:26:45 | hodgestar | set | messageid: <1392571605.97.0.345586725158.issue16251@psf.upfronthosting.co.za> |
| 2014-02-16 17:26:45 | hodgestar | link | issue16251 messages |
| 2014-02-16 17:26:45 | hodgestar | create | |
|