(self, ast_setup, ast_stmt)
| 127 | :meth:`ExecutionMagics.timeit`. |
| 128 | """ |
| 129 | def __init__(self, ast_setup, ast_stmt): |
| 130 | self.ast_setup = ast_setup |
| 131 | self.ast_stmt = ast_stmt |
| 132 | |
| 133 | def visit_FunctionDef(self, node): |
| 134 | "Fill in the setup statement" |
nothing calls this directly
no outgoing calls
no test coverage detected