Re: Moving class used in pickle

2007-05-21 Thread Gabriel Genellina
En Mon, 21 May 2007 16:24:55 -0300, Berthold Höllmann <[EMAIL PROTECTED]> escribió: > Jeffrey Barish <[EMAIL PROTECTED]> writes: > >> I have a class derived from string that is used in a pickle. In the new >> version of my program, I moved the module containing the definition of >> the class.

Re: Moving class used in pickle

2007-05-21 Thread Peter Otten
Jeffrey Barish wrote: > I have a class derived from string that is used in a pickle. In the new > version of my program, I moved the module containing the definition of the > class. Now the unpickle fails because it doesn't find the module. I was > thinking that I could make the unpickle work b

Re: Moving class used in pickle

2007-05-21 Thread Berthold Höllmann
Jeffrey Barish <[EMAIL PROTECTED]> writes: > I have a class derived from string that is used in a pickle. In the new > version of my program, I moved the module containing the definition of the > class. Now the unpickle fails because it doesn't find the module. I was > thinking that I could mak

Re: Moving class used in pickle

2007-05-15 Thread Jean-Paul Calderone
On Tue, 15 May 2007 13:23:29 -0600, Jeffrey Barish <[EMAIL PROTECTED]> wrote: >I have a class derived from string that is used in a pickle. In the new >version of my program, I moved the module containing the definition of the >class. Now the unpickle fails because it doesn't find the module. I