Zip the list from [[arg0, arg0', arg0''], [arg1', arg1'', arg1''], ...] to [(arg0, arg1, ...), (arg0', arg1', ...), (arg0'', arg1'', ...)]
(inputs)
| 115 | return result |
| 116 | |
| 117 | def _repack_input_sets(inputs): |
| 118 | """Zip the list from [[arg0, arg0', arg0''], [arg1', arg1'', arg1''], ...] |
| 119 | to [(arg0, arg1, ...), (arg0', arg1', ...), (arg0'', arg1'', ...)] |
| 120 | """ |
| 121 | return _repack_list(inputs, tuple) |
| 122 | |
| 123 | input_sets = [] |
| 124 | if _detect_multiple_input_sets(inputs): |
no test coverage detected