Message 211331 - Python tracker
Message211331
| 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: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 | |