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.22:04:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1620597869.56.0.426271251915.issue44076@roundup.psfhosted.org>
In-reply-to
Content
I made changes but result is same:

    xrec = self.treedata.selection()[0]
    xrec = int(xrec[1:], 16) - 1

    print('xrec: ', xrec)
    itemXid = assetinfo_lst[xrec]
    itemXid = itemXid[1]



    Exception in Tkinter callback
    Traceback (most recent call last):
    File "C:\Users\xxxxxx\AppData\Local\Programs\Python\Python38-32\lib\tkinter\__init__.py", line 1883, in __call__
        return self.func(*args)
    File "xxxxxx.py", line 1463, in OnDoubleClick
    itemXid = assetinfo_lst[xrec]
    IndexError: list index out of range

    length of assetinfo_lst before a new insert: 16
    length of assetinfo_lst after a new insert: 17
    xrec:  xrec:  28


As I mentioned, It seems that the recent update of Windows has affected Tkinter, 
so that mainloop is not working after the first time
History
Date User Action Args
2021-05-09 22:04:29becky07setrecipients: + becky07, paul.moore, tim.golden, steven.daprano, zach.ware, steve.dower, andrei.avk, shreyanavigyan
2021-05-09 22:04:29becky07setmessageid: <1620597869.56.0.426271251915.issue44076@roundup.psfhosted.org>
2021-05-09 22:04:29becky07linkissue44076 messages
2021-05-09 22:04:29becky07create