[Zope] Attribute error on security tab
Dieter Maurer
dieter@handshake.de
Thu, 16 Jan 2003 21:06:32 +0100
D2 wrote at 2003-1-16 01:31 -0400:
> ...
> TRUE. The answer is in the error message. I must learn to read.
> But what is __bases__
> I didn't find __bases__ and as Windows don't know how to search in *.py
> files, i can't make a search on this string in the files.
You find the answer to this question in the Python language documentation:
special attributes and methods.
"__bases__" is a special attribute of classes. It returns the tuple
of base classes for this class.
Dieter