Re: Deserializing specific objects from a file

2007-09-19 Thread Marc 'BlackJack' Rintsch
On Tue, 18 Sep 2007 16:02:38 -0700, Aaron J. M. wrote: There are many objects that I want be able to move in and out of memory at runtime; namely the game levels. I only want one level in memory at a time, so I want to be able to unpickle specific Level objects as the player moves between

Re: Deserializing specific objects from a file

2007-09-19 Thread Aaron J. M.
That's exactly what I needed. Thank you. Aaron J. M. -- http://mail.python.org/mailman/listinfo/python-list

Deserializing specific objects from a file

2007-09-18 Thread Aaron J. M.
I'm building a game and am starting to seriously think about serialization, though I haven't done much serialization before except for a few experiments with the pickle module. There are many objects that I want be able to move in and out of memory at runtime; namely the game levels. I only want