preguntar acerca de new-style-class

3
réponses

Python 2.x Super INIT l’héritage ne fonctionne pas quand le parent n’hérite pas de l’objet

j'ai le code python 2.7 suivant: class Frame: def __init__(self, image): self.image = image class Eye(Frame): def __init__(self, image): super(Eye, self).__init__() self.some_other_defined_stuff() j'essaie d'étend …
demandé sur 1970-01-01 00:33:34