本の例の1つに記載されている以下のコード行PyQt
から自分で学習しようとしていますが、rapid gui programming with python and qt
理解に苦労しています。meaning/requirement
class Form(QDialog):
def __init__(self,parent=None):
super(Form,self).__init__(parent) # Trouble understanding here
だから、私の質問は、何が必要なのか、このコードsuper(Form,self).__init__(parent)
を完全に埋めようとしている目的は何なのかということです。