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 taleinat
Recipients gpolo, rsteel1, serhiy.storchaka, taleinat
Date 2018-07-05.06:13:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530771183.9.0.56676864532.issue34029@psf.upfronthosting.co.za>
In-reply-to
Content
Confirmed with Python 3.6.3 on Windows 10 64-bit: It hangs showing an empty window.

Debugging a bit, the hang happens in Lib/tkinter/commondialog.py, line 43:

s = w.tk.call(self.command, *w._options(self.options)) 

The value of self.command is 'tk_chooseDirectory', and w._options(self.options) just gives an empty tuple, so the actual call is:

s = w.tk.call('tk_chooseDirectory', ())

This means that the hang is within w.tk.call().

I'd follow this up with the pywinauto devs. To me this doesn't seem like something wrong with the tkinter module.
History
Date User Action Args
2018-07-05 06:13:03taleinatsetrecipients: + taleinat, gpolo, serhiy.storchaka, rsteel1
2018-07-05 06:13:03taleinatsetmessageid: <1530771183.9.0.56676864532.issue34029@psf.upfronthosting.co.za>
2018-07-05 06:13:03taleinatlinkissue34029 messages
2018-07-05 06:13:03taleinatcreate