Jim Mooney <[email protected]> wrote: >Is there a way to unstring something? That is str(object) will give me >a string, but what if I want the original object back, for some >purpose, without a lot of foofaraw?
Only by keeping the original reference to the object. str(object) produces a new object that has absolutely no relation to the original. _______________________________________________ Tutor maillist - [email protected] To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor
