5 Sep
2003
5 Sep
'03
7:49 p.m.
Daniel Ajoy wrote at 2003-9-3 17:55 -0500:
When I make a ZClass that inherits from an image object and I make one instance. The instance doesn't have the "add" form of Image by default. Should it? I think it should.
Am I doing something wrong?
Maybe, you do not explain your problem correctly? The "add" form does not belong to the class/instance (as it must be there before the instance is created; Python until 2.2 has not had class methods but only instance methods). Therefore, the "add" form is not inherited by a derived class. Dieter