[issue1457119] Unifying pickle and cPickle exception class hierarchies

2009-04-05 Thread Georg Brandl
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

[issue1457119] Unifying pickle and cPickle exception class hierarchies

2009-03-20 Thread Daniel Diniz
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