Re: [Numpy-discussion] unpickle

2008-11-20 Thread Frank Lagor
> > This, and your previous question, are mostly off-topic for > numpy-discussion. You may want to ask such questions in the future on > more general Python mailing lists. > > http://www.python.org/community/lists/ > > -- > Robert Kern > > Yes of course. Sorry for the spam. The numpy list is jus

Re: [Numpy-discussion] unpickle

2008-11-19 Thread Robert Kern
On Wed, Nov 19, 2008 at 22:36, Frank Lagor <[EMAIL PROTECTED]> wrote: > I have only used pickle a little and I did not see this in the docstring: > > Is there anyway to unpickle in reverse order? No. This, and your previous question, are mostly off-topic for numpy-discussion. You may want to ask

[Numpy-discussion] unpickle

2008-11-19 Thread Frank Lagor
I have only used pickle a little and I did not see this in the docstring: Is there anyway to unpickle in reverse order? It appears the pickling works like a queue. I execute: pickle.dump(obj1,file) pickle.dump(obj2,file) Then when I go to retrieve: pickle.load(file) returns obj1 pickle.load(fil