Fill in the setup statement
(self, node)
| 131 | self.ast_stmt = ast_stmt |
| 132 | |
| 133 | def visit_FunctionDef(self, node): |
| 134 | "Fill in the setup statement" |
| 135 | self.generic_visit(node) |
| 136 | if node.name == "inner": |
| 137 | node.body[:1] = self.ast_setup.body |
| 138 | |
| 139 | return node |
| 140 | |
| 141 | def visit_For(self, node): |
| 142 | "Fill in the statement to be timed" |
nothing calls this directly
no test coverage detected