(strings)
| 291 | return stringList2StrippedList(s.split(',')) |
| 292 | |
| 293 | def stringList2StrippedList(strings): |
| 294 | l = [] |
| 295 | for string in strings: |
| 296 | l.append(string.strip()) |
| 297 | return l |
| 298 | |
| 299 | def filterValue2Int(s): |
| 300 | """Filter all numeric characters from the string and answer the resulting |
no test coverage detected