Fill in the statement to be timed
(self, node)
| 139 | return node |
| 140 | |
| 141 | def visit_For(self, node): |
| 142 | "Fill in the statement to be timed" |
| 143 | if getattr(getattr(node.body[0], 'value', None), 'id', None) == 'stmt': |
| 144 | node.body = self.ast_stmt.body |
| 145 | return node |
| 146 | |
| 147 | |
| 148 | class Timer(timeit.Timer): |
nothing calls this directly
no outgoing calls
no test coverage detected