[PyKDE] PyQt and lambda expressions doesn't like each other

Hans-Peter Jansen hpj at urpla.net
Mon Apr 28 14:32:00 BST 2003


This doesn't work (while it should):

import sys
from qt import *

app = QApplication(sys.argv)
button = QPushButton("&Hello World", None)
app.setMainWidget(button)
button.show()
app.connect(button, SIGNAL("clicked()"), lambda: app.exit(0))
app.exec_loop()

Any ideas, why?

Pete




More information about the PyQt mailing list