(xpu, inp)
| 161 | |
| 162 | |
| 163 | def process_range(xpu, inp): |
| 164 | start, end = map(int, inp) |
| 165 | if start > end: |
| 166 | end, start = start, end |
| 167 | return map(lambda x: '{}{}'.format(xpu, x), range(start, end+1)) |
| 168 | |
| 169 | |
| 170 | REGEX = [ |
nothing calls this directly
no outgoing calls
no test coverage detected