(x)
| 24 | def _ntuple(n): |
| 25 | |
| 26 | def parse(x): |
| 27 | if isinstance(x, collections.abc.Iterable) and not isinstance(x, str): |
| 28 | return tuple(x) |
| 29 | return tuple(repeat(x, n)) |
| 30 | |
| 31 | return parse |
| 32 |
nothing calls this directly
no test coverage detected
searching dependent graphs…