[Zope] dtml-calendar question.

Chris Withers chrisw@nipltd.com
Thu, 03 Aug 2000 10:14:32 +0100


"R. David Murray" wrote:
> 
> On Thu, 3 Aug 2000, Andrew Kenneth Milton wrote:
> > | Well, yeah.  A restricted python environment.  The point being, it follows
> > | python syntax rules <grin>.
> >
> > kind of... :-)
> 
> In what way does it *not* follow Python (expression) syntax rules?

_['something'] doesn't just return the value from the dictionary which
has the 'something' key, if it's callable, it'll try to call it and then
return that... not nice :(

If you want to be safe, use _.getitem('something',0)...

cheers,

Chris