[Zope] Speaking of Python Methods....
Dieter Maurer
dieter@handshake.de
Wed, 22 Nov 2000 22:24:26 +0100 (CET)
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