This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author becky07
Recipients becky07, paul.moore, shreyanavigyan, steve.dower, steven.daprano, tim.golden, zach.ware
Date 2021-05-09.09:24:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1620552258.68.0.542647201986.issue44076@roundup.psfhosted.org>
In-reply-to
Content
I tried the following method:

    class MasterApp(object):
        def __init__(self, root):
        ....

        def fun_astinfo_add(self):
	    ...
	    assetinfo_lst.append(lst_values)
	    ...
	    MasterApp(root)

        ...
    if __name__ == "__main__":
        root = Tk()
        App = MasterApp(root)
        root.mainloop()

The program works properly, but the screen disappears and then reappears. Which means, that mainloop() works in the first time,
and when there is any change in the data, it does not work.

Reinstalling Tkinter is the right solution? Will it work?
History
Date User Action Args
2021-05-09 09:24:18becky07setrecipients: + becky07, paul.moore, tim.golden, steven.daprano, zach.ware, steve.dower, shreyanavigyan
2021-05-09 09:24:18becky07setmessageid: <1620552258.68.0.542647201986.issue44076@roundup.psfhosted.org>
2021-05-09 09:24:18becky07linkissue44076 messages
2021-05-09 09:24:18becky07create