Skip Montanaro writes:
>> It clearly isn't in use in this folder. Is this some kind of reserved >> word in Zope?
Jamie> yes
Is there some way to discover what these reserved names are, or do people have to just stumble upon them?
The answer "it is reserved" was not very good: An object manager refuses to add a given name when it already has an attribute with this name. In the case of "manage", he does not have it itself but gets it from its class. Thus, when you have an object, all its attributes, either instance or class, either members or methods, are reserved. As you see, the list of reserved names is object and state dependent... "DocFinder" may help you to find the class attributes. See <http://www.dieter.handshake.de/pyprojects/zope> Dieter