(self, context, *args)
| 141 | "do the actual computation" |
| 142 | return context.evaluateInScope(self.block, self.scope) |
| 143 | def __call__(self, context, *args): |
| 144 | assert self.bounded |
| 145 | self.bind(args) |
| 146 | erg = self.calcErg(context) |
| 147 | self.unbind() |
| 148 | #print "__call__ erg is", erg |
| 149 | return erg |
| 150 | |
| 151 | XMLtag = "OMBIND" |
| 152 | def getChildren(self): |