I have a class that inherits from Persistent but also needs to hook into setattr and getattribute.<br><br>class Test(Persistent)<br>   ...<br>  def __setattr__(self, name, val)<br>  def __getattribute__(self, name)<br><br>
Before when this class inherited from object the __setattr__ and __getattribute__ calls were simple and straight forward with object.__getattribute__(name). However, now that I inherent from Persistent, the equivalent Persistent.__getattribute__ and Persisent.__setattr__ don&#39;t seem to set/get my attributes.<br>
<br>Can someone help me out. What call should I be using instead?<br><br>- Jim<br><br><br>