(s)
| 445 | return t |
| 446 | |
| 447 | def commaString2IntegerList(s): |
| 448 | l = [] |
| 449 | for word in commaString2List(s): |
| 450 | number = asInt(word) |
| 451 | if number is not None: |
| 452 | l.append(number) |
| 453 | return l |
| 454 | |
| 455 | def list2String(l, separator=''): |
| 456 | return separator.join([asString(ll) for ll in l]) |
nothing calls this directly
no test coverage detected