Call a helper in this module.
(self, name: str, *args: ast.expr)
| 781 | return self.helper("_saferepr", expr) |
| 782 | |
| 783 | def helper(self, name: str, *args: ast.expr) -> ast.expr: |
| 784 | """Call a helper in this module.""" |
| 785 | py_name = ast.Name("@pytest_ar", ast.Load()) |
| 786 | attr = ast.Attribute(py_name, name, ast.Load()) |
| 787 | return ast.Call(attr, list(args), []) |
| 788 | |
| 789 | def builtin(self, name: str) -> ast.Attribute: |
| 790 | """Return the builtin called *name*.""" |
no outgoing calls
no test coverage detected