[Zope-Checkins] CVS: Components/cPickle - cPickle.c:1.67
Jim Fulton
jim@tarzan.digicool.com
Wed, 12 May 1999 12:09:49 -0400
Update of /cvs-repository/Components/cPickle
In directory tarzan.digicool.com:/projects/users/Z2/lib/Components/cPickle
Modified Files:
cPickle.c
Log Message:
Changed pickle error types to classes:
PickleError
PicklingError
UnpickleableError
UnpicklingError
And change the handling of unpickleable objects so that an UnpickleableError
is raised with the unpickleable object as the argument. UnpickleableError
has a reasonable string representation and provides access to the problem
object, which is useful during debugging.