Georg Brandl added the comment:
This is fine in Py3k, where there is only one set of pickling exceptions
that can be raised. In 2.x it's best not to break backwards
compatibility right now.
--
nosy: +georg.brandl
resolution: -> wont fix
status: open -> closed
Daniel Diniz added the comment:
Almost fooled me, still as described on trunk:
>>>help(cPickle.UnpickleableError)
Help on class UnpickleableError in module cPickle:
class UnpickleableError(PicklingError)
[...]
>>> help(pickle.PicklingError)
Help on class PicklingError in module pickle:
class Pi