Steve Drees writes:
 > What's the PythonMethod equivalent of:
 > <dtml-with callTypes>
 > <dtml-var "_.getitem(_.str(2)).Name">
 > </dtml-with>
To get the object:

   getattr(callTypes,'2').Name

then you must do something with it. "dtml-var" would render
it. This means call it, if it is callable and convert to a string.

The "callTypes" above may need to be replaced by
"self.callTypes" or "context.callTypes", if
"callTypes" is not yet in the functions namespace.


Dieter

_______________________________________________
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )

Reply via email to