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 andrei.avk, becky07, paul.moore, shreyanavigyan, steve.dower, steven.daprano, tim.golden, zach.ware
Date 2021-05-09.23:55:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1620604556.22.0.274346818825.issue44076@roundup.psfhosted.org>
In-reply-to
Content
Please find attached, the demo with dummy data. As I mentioned, it was working fine until May 1st. 
Also, As I mentioned, in case I call MasterApp at the end of add function data appears correctly. This means a malfunction occurred after Windows Update, and it relates to mainloop

    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()
History
Date User Action Args
2021-05-09 23:55:56becky07setrecipients: + becky07, paul.moore, tim.golden, steven.daprano, zach.ware, steve.dower, andrei.avk, shreyanavigyan
2021-05-09 23:55:56becky07setmessageid: <1620604556.22.0.274346818825.issue44076@roundup.psfhosted.org>
2021-05-09 23:55:56becky07linkissue44076 messages
2021-05-09 23:55:56becky07create