Converts a textual representation of integer numbers and ranges to a Python list. Supported formats: 2,3,4,2-10,-1 - -3, 5 - -2 Values are appended to the created list in the order specified in the string.
(s,
split=string.split,integer=_integerRE,
integerRange=_integerRangeRE)