[issue9673] Entry Widget Not Editable under Windows XP

Terry J. Reedy report at bugs.python.org
Mon May 19 01:16:57 CEST 2014


Terry J. Reedy added the comment:

The reverenced post did not give a runnable minimal example with the claimed bug, but only described more complex code at a now dead link. The following from http://effbot.org/tkinterbook/entry.htm works on my Win7 machine.

import tkinter as tk
master = tk.Tk()
e = tk.Entry(master)
e.pack()
e.focus_set()
def callback():
    print(e.get())
b = tk.Button(master, text="get", width=10, command=callback)
b.pack()
tk.mainloop()

----------
resolution:  -> out of date
stage:  -> resolved
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9673>
_______________________________________


More information about the Python-bugs-list mailing list