Message208109
| 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:44 | barry | set | recipients: + barry, docs@python |
| 2014-01-14 19:54:44 | barry | set | messageid: <1389729284.21.0.174760794096.issue20261@psf.upfronthosting.co.za> |
| 2014-01-14 19:54:44 | barry | link | issue20261 messages |
| 2014-01-14 19:54:44 | barry | create | |