vote up 0 vote down star

I was trying to write code that would auto-close a Toplevel Tk window in Python.

I ended up getting it to work, but ran into a little problem along the way that I wasn't able to figure out.

The second two buttons work, but the first one doesn't and I don't understand why...

Any ideas?

from Tkinter import *

root = Tk()
def doDestroy ():
    TL.destroy()

TL = Toplevel()
TL.b = Button (TL, text="lambda destroy", command=lambda: TL.destroy)
TL.b.pack()

TL.b2 = Button (TL, text="callback destroy", command=doDestroy)
TL.b2.pack()

de = lambda: TL.destroy()
TL.b3 = Button (TL, text="lambda that works", command=de)
TL.b3.pack()
root.mainloop()
flag

44% accept rate

1 Answer

vote up 5 vote down check

Because it returns a function and not its result.

You should put:

command=TL.destroy

or if you used lambda:

command=lambda: TL.destroy()
link|flag
I understand that lambda returns a function, but isn't that the same as passing TL.destroy? Both are references to functions, right? – Hortitude Dec 9 '08 at 5:13
no, lambda works exactly like def but it's anonymous, you have to put the same thing in the body. So in your try with lambda, command is not assigned a function, but a function returning a function (one indirection too much). Whereas TL.destroy is a function, so it's OK. – Piotr Lesnicki Dec 9 '08 at 5:23
Got it. Thanks! – Hortitude Dec 9 '08 at 5:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.