RE: [mlist] RE: [GD-General] Off the shelf scripting languages
Brought to you by:
vexxed72
From: Ivan-Assen I. <as...@ha...> - 2003-04-23 11:55:51
|
> Python has "pickling" to do this. Or you can do it the way > you do everything else - assign all objects a unique ID, and > save the stuff out manually, replacing pointers with IDs. > Which is essentially what pickling does. Pickling is serialization of Python objects from within Python code; what I'm talking about is pickling the thread state itself. Pickling thread state in Stackless is announced as "possible in the future" and "coming really soon" by Tismer, the author of Stackless, on several occasions. What do you do for serializing the scripting environment state? |