James Smith wrote:
> Say an object like this exists:
> class test:
> a = ""
> b = ""
>
> You pickle it.
>
> You change the object definition to have a new field:
> class test
> a = ""
> b = ""
> c = ""
>
> You read the pickled object.
> Will it load but ignore the new field?
Say an object like this exists:
class test:
a = ""
b = ""
You pickle it.
You change the object definition to have a new field:
class test
a = ""
b = ""
c = ""
You read the pickled object.
Will it load but ignore the new field?
That is what I want.
--
https://mail.python.org/