Can someone give a definitive answer on when to use one or the other? Is mainquit() really deprecated?
Having to do:
connect('signal', lambda w: gtk.main_quit() )
or
self.connect('signal', lambda w,x: gtk.main_quit() )
seems like an ugly hack.
Using:
connect('signal', gtk.mainquit)
would be the most easily understandable.
-- ========================================= reply-to: a n d y @ n e t f x p h . c o m _______________________________________________ pygtk mailing list [EMAIL PROTECTED] http://www.daa.com.au/mailman/listinfo/pygtk Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
