(sim, todo)
| 5134 | """ |
| 5135 | |
| 5136 | def _end(sim, todo): |
| 5137 | if todo == "finish": |
| 5138 | for func in step_funcs: |
| 5139 | _eval_step_func(sim, func, "step") |
| 5140 | for func in step_funcs: |
| 5141 | _eval_step_func(sim, func, "finish") |
| 5142 | |
| 5143 | return _end |
| 5144 |
nothing calls this directly
no test coverage detected