Updating A Tkinter Window every 100 ms?

Martin v. Loewis martin at v.loewis.de
Wed Nov 20 03:30:01 EST 2002


josiah7 at hotmail.com (Josiah) writes:

> Is there a better way? Why does the "lift()" function not work with
> "self.master.lift()"?

Because self has no attribute master. I suggest doing

self.master = master

inside __init__.

Regards,
Martin



More information about the Python-list mailing list