[Zope] How to access the attributes of a base class?

Dieter Maurer dieter@handshake.de
Sat, 6 Apr 2002 00:07:06 +0200


Lars Heber writes:
 > I have a ZClass Folder and a ZClass SpecialFolder, which has Folder as
 > base class.
 > Within an instance of SpecialFolder, I need access to a property
 > declared in the base class Folder.
Not sure, I understand your problem...

  It is trivial to access a property defined in a base class
  (provided it is not overwritten in the derived class):

	instance.property_defined_in_base_class

But, I must miss something as it is too simple...


Dieter