Same as execution_step() except that the step name is scoped.
(name, *args, **kwargs)
| 3038 | |
| 3039 | |
| 3040 | def scoped_execution_step(name, *args, **kwargs): |
| 3041 | """Same as execution_step() except that the step name is scoped.""" |
| 3042 | default_name = ScopedName(name) if name else name |
| 3043 | return execution_step(default_name, *args, **kwargs) |
| 3044 | |
| 3045 | |
| 3046 | def _extract_stacktrace(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…