[issue44076] issue with list in Python 3.8.5

Mohamed report at bugs.python.org
Sun May 9 05:24:18 EDT 2021


Mohamed <allawatimr at gmail.com> added the comment:

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?

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue44076>
_______________________________________


More information about the Python-bugs-list mailing list