24 Mar
2003
24 Mar
'03
6:53 p.m.
Thierry FLORAC wrote at 2003-3-24 09:59 +0100:
... - is it better to test for "object.meta_type"
Drawback: no inheritance check
or "isinstance (object, class)"
Drawback: you usually need "object.aq_base". It's more expensive than a simple "meta_type" check. Dieter