94c94
< return map(int, v.split('.'))
---
> return map(lambda x: int(re.match('\d+', x).group()), v.split('.'))