Re: need helping tracking down weird bug in cPickle

2006-06-23 Thread Dieter Maurer
[Carl J. Van Arsdall] > Hey everyone, cPickle is raising an ImportError that I just don't quite > understand. When I get in such a situation, I replace "cPickle" with Python's "pickle". Usually, I get the same exception -- but this time with a traceback that can be analysed with "pdb.pm()". Usuall

Re: need helping tracking down weird bug in cPickle

2006-06-20 Thread Tim Peters
[Carl J. Van Arsdall] > Hey everyone, cPickle is raising an ImportError that I just don't quite > understand. When that happens, the overwhelmingly most likely cause is that the set of modules on your PYTHONPATH has changed since the pickle was first created, in ways such that a module _referenced

Re: need helping tracking down weird bug in cPickle

2006-06-20 Thread Scott David Daniels
Carl J. Van Arsdall wrote: > Hey everyone, cPickle is raising an ImportError that I just don't quite > understand. Before I paste the code, let me explain the application. > Basically the part of the application that failed is a function that > loads a list of objects from a file using cPickle

need helping tracking down weird bug in cPickle

2006-06-20 Thread Carl J. Van Arsdall
Hey everyone, cPickle is raising an ImportError that I just don't quite understand. Before I paste the code, let me explain the application. Basically the part of the application that failed is a function that loads a list of objects from a file using cPickle. This list is a queue of request