(self, callable, args, kwargs)
| 217 | raise ExecutionFailed(excinfo) |
| 218 | |
| 219 | def _call(self, callable, args, kwargs): |
| 220 | res, excinfo = _interpreters.call(self._id, callable, args, kwargs, restrict=True) |
| 221 | if excinfo is not None: |
| 222 | raise ExecutionFailed(excinfo) |
| 223 | return res |
| 224 | |
| 225 | def call(self, callable, /, *args, **kwargs): |
| 226 | """Call the object in the interpreter with given args/kwargs. |
no test coverage detected