(self, function_name, *args)
| 1056 | return self.build_function(argnames, func_m.group('code')) |
| 1057 | |
| 1058 | def call_function(self, function_name, *args): |
| 1059 | f = self.extract_function(function_name) |
| 1060 | return f(args) |
| 1061 | |
| 1062 | def build_function(self, argnames, code): |
| 1063 | def resf(argvals): |
nothing calls this directly
no test coverage detected