Re: serialize a tkinter thing

2005-04-10 Thread jepler
I suspect you're right. Tkinter.Variable holds a reference to the tkapp instance, which doesn't seem likely to be picklable. Imagining that tkapp instances *were* picklable, unpickling the stringvar would get you a whole new application toplevel that you didn't want. You might be able to extend

Re: serialize a tkinter thing

2005-04-10 Thread Harlin Seritt
No reason why they shouldn't be. -Harlin -- http://mail.python.org/mailman/listinfo/python-list

serialize a tkinter thing

2005-04-09 Thread max(01)*
hi. i tried to serialize a list of StringVar's, but i got a pickle error. this got me to thinking that tkinter objects are not picklable (in general). would somebody confirm and/or give examples? thanks macs -- http://mail.python.org/mailman/listinfo/python-list