(control_name, base_name)
| 26 | |
| 27 | |
| 28 | def _get_next_step_name(control_name, base_name): |
| 29 | global _current_idx, _used_step_names |
| 30 | concat_name = '%s/%s' % (base_name, control_name) |
| 31 | next_name = concat_name |
| 32 | while next_name in _used_step_names: |
| 33 | next_name = '%s_%d' % (concat_name, _current_idx) |
| 34 | _current_idx += 1 |
| 35 | _used_step_names.add(next_name) |
| 36 | return next_name |
| 37 | |
| 38 | |
| 39 | def _MakeList(input): |
no test coverage detected
searching dependent graphs…