Return partial of original function call
(self)
| 122 | yield c |
| 123 | |
| 124 | def partial(self): |
| 125 | """Return partial of original function call""" |
| 126 | ba = self.data["bound_args"] |
| 127 | return state_partial(self.data["func"], *ba.args[1:], **ba.kwargs) |
| 128 | |
| 129 | def update_child_calls(self): |
| 130 | """Replace child nodes on original function call with their partials""" |
no outgoing calls
no test coverage detected