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 Daniel Preston
Recipients Daniel Preston, paul.moore, steve.dower, tim.golden, zach.ware
Date 2019-12-04.19:44:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1575488682.09.0.412861821421.issue38974@roundup.psfhosted.org>
In-reply-to
Content
I am using Tkinter in my program, and at a point I use a button to open a file by running a function with the following code:
def UploadAction(event=None):
     global filename
     filename = filedialog.askopenfilename()
     filename = [filename]
return filename
However, when I run this function, it causes Python to freeze. Apparently there have been bugs like this before in previous versions, and this wasn't a problem on 3.7, which makes me suspect that this is a bug rather than a fault on my end. Would you be able to release an update to fix this bug? Thanks.
History
Date User Action Args
2019-12-04 19:44:42Daniel Prestonsetrecipients: + Daniel Preston, paul.moore, tim.golden, zach.ware, steve.dower
2019-12-04 19:44:42Daniel Prestonsetmessageid: <1575488682.09.0.412861821421.issue38974@roundup.psfhosted.org>
2019-12-04 19:44:42Daniel Prestonlinkissue38974 messages
2019-12-04 19:44:41Daniel Prestoncreate