def __show_about(self, *args): about = AboutDialog(self, app) about.run() about.destroy()
def test_ctr(self): AboutDialog(None, app).destroy()
def __show_about(self, widget): about = AboutDialog(self, app) about.run() about.destroy()
def about_cb(*args): about = AboutDialog(self, app) about.run() about.destroy()