(self, s)
| 155 | (data[i][0], l, data[i][1:])) |
| 156 | |
| 157 | def oldSplit(self, s): |
| 158 | ret = [] |
| 159 | lex = shlex.shlex(io.StringIO(s)) |
| 160 | tok = lex.get_token() |
| 161 | while tok: |
| 162 | ret.append(tok) |
| 163 | tok = lex.get_token() |
| 164 | return ret |
| 165 | |
| 166 | def testSplitNone(self): |
| 167 | with self.assertRaises(ValueError): |
no test coverage detected