(self, *args, **kwargs)
| 185 | self.pure = pure |
| 186 | |
| 187 | def __call__(self, *args, **kwargs): |
| 188 | return self.symbol_table._new_apply( |
| 189 | self.apply_name, args, kwargs, self.o_len, self.pure |
| 190 | ) |
| 191 | |
| 192 | |
| 193 | scope = SymbolTable() |
nothing calls this directly
no test coverage detected