unbind the arguments
(self)
| 134 | varBindings = dict(izip([i.name for i in self.variables], args)) |
| 135 | self.scope.push(varBindings) |
| 136 | def unbind(self): |
| 137 | "unbind the arguments" |
| 138 | self.scope.pop() |
| 139 | |
| 140 | def calcErg(self, context): |
| 141 | "do the actual computation" |