Message210577
The version 2 docs:
http://docs.python.org/2/library/pickle.html#object.__reduce_ex__:
-------------------------------------------------------------------------
The object class implements both __reduce__() and __reduce_ex__();
however, if a subclass overrides __reduce__() but not __reduce_ex__(),
the __reduce_ex__() implementation detects this and calls __reduce__().
-------------------------------------------------------------------------
The current docs may say the same thing, but much less clearly:
http://docs.python.org/dev/library/pickle.html#object.__reduce_ex__:
-------------------------------------------------------------------------
Alternatively, a __reduce_ex__() method may be defined. The only
difference is this method should take a single integer argument, the
protocol version. When defined, pickle will prefer it over the
__reduce__() method. In addition, __reduce__() automatically becomes
a synonym for the extended version. The main use for this method is to
provide backwards-compatible reduce values for older Python releases.
------------------------------------------------------------------------- |
|
Date |
User |
Action |
Args |
2014-02-07 23:57:15 | ethan.furman | set | recipients:
+ ethan.furman, barry, pitrou, alexandre.vassalotti, python-dev, serhiy.storchaka |
2014-02-07 23:57:15 | ethan.furman | set | messageid: <1391817435.09.0.826082101386.issue20534@psf.upfronthosting.co.za> |
2014-02-07 23:57:15 | ethan.furman | link | issue20534 messages |
2014-02-07 23:57:14 | ethan.furman | create | |
|