Message210634
I don't know if this was discussed, but as far as enums will be used for platform depending constants (as ENOENT or AF_UNIX), I think that enums should be pickled by name, not by value. Here is the __reduce_ex__ implementation:
def __reduce_ex__(self, proto):
if proto < 4:
return getattr, (self.__class__, self._name_)
return self.__class__.__qualname__ + '.' + self._name_ |
|
Date |
User |
Action |
Args |
2014-02-08 13:31:20 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, barry, pitrou, alexandre.vassalotti, eli.bendersky, ethan.furman, python-dev |
2014-02-08 13:31:20 | serhiy.storchaka | set | messageid: <1391866280.7.0.580446190734.issue20534@psf.upfronthosting.co.za> |
2014-02-08 13:31:20 | serhiy.storchaka | link | issue20534 messages |
2014-02-08 13:31:20 | serhiy.storchaka | create | |
|