5
Python : 바인딩되지 않은 메서드 바인딩?
Python에서 바인딩되지 않은 메서드를 호출하지 않고 바인딩하는 방법이 있습니까? 저는 wxPython 프로그램을 작성 중이며 특정 클래스의 경우 모든 버튼의 데이터를 클래스 수준의 튜플 목록으로 함께 그룹화하는 것이 좋습니다. class MyWidget(wx.Window): buttons = [("OK", OnOK), ("Cancel", OnCancel)] # ... def Setup(self): for text, handler in MyWidget.buttons: # This following line is …