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 terry.reedy
Recipients claird, firatozgul, gpolo, terry.reedy
Date 2014-05-18.23:16:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1400455017.89.0.280290832974.issue9673@psf.upfronthosting.co.za>
In-reply-to
Content
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()
History
Date User Action Args
2014-05-18 23:16:58terry.reedysetrecipients: + terry.reedy, gpolo, firatozgul, claird
2014-05-18 23:16:57terry.reedysetmessageid: <1400455017.89.0.280290832974.issue9673@psf.upfronthosting.co.za>
2014-05-18 23:16:57terry.reedylinkissue9673 messages
2014-05-18 23:16:57terry.reedycreate