Evan Simpson wrote:
> 
> The only way that the security code can know that your __setitem__ is safe
> is to rename (or alias) it to __guarded_setitem__.  Ditto for other such
> methods.

Cool :-) Hmmm... I'm sure __getitem__ works okay though ;-)

> > if type(x) == type(0):
> 
> Use the Script builtin "same_type" instead:
> 
> if same_type(x, 0):
>     # Whatever

But what's so bad about type()?!

cheers,

Chris

_______________________________________________
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 )

Reply via email to