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 Akuli
Recipients Akuli, epaine, serhiy.storchaka, terry.reedy
Date 2021-07-09.21:03:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1625864593.98.0.0132672677616.issue44592@roundup.psfhosted.org>
In-reply-to
Content
Unfortunately I don't know any real-world examples of this on Windows. The open file dialog works very differently on Windows: it uses the native Windows dialog, whereas on Linux, it's implemented in Tcl.

Meanwhile, here's a platform-independent toy example:

    import tkinter

    root = tkinter.Tk()
    root.tk.eval("""
    entry .e
    pack .e
    focus .e
    """)
    root.after(500, root.focus_get)
    root.mainloop()

Also, thanks for reopening!
History
Date User Action Args
2021-07-09 21:03:14Akulisetrecipients: + Akuli, terry.reedy, serhiy.storchaka, epaine
2021-07-09 21:03:13Akulisetmessageid: <1625864593.98.0.0132672677616.issue44592@roundup.psfhosted.org>
2021-07-09 21:03:13Akulilinkissue44592 messages
2021-07-09 21:03:13Akulicreate