Steve Alexander wrote:
>
> This assumes a method of DataSkins.DataSkin _uncache_attrs:
>
> def _uncache_attrs(self, names):
> v=self._v_attrCache
> for name in names:
> del v[name]
>
> I haven't tested any of this yet.
And I realized just after I sent it that the method should be more like:
def _uncache_attrs(self, names):
v=self._v_attrCache
for name in names:
if v.has_key(name): del v[name]
--
Steve Alexander
Software Engineer
Cat-Box limited
http://www.cat-box.net
_______________________________________________
Zope-Dev maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://lists.zope.org/mailman/listinfo/zope-announce
http://lists.zope.org/mailman/listinfo/zope )