(self)
| 297 | return self |
| 298 | |
| 299 | def __next__(self): |
| 300 | token = self.get_token() |
| 301 | if token == self.eof: |
| 302 | raise StopIteration |
| 303 | return token |
| 304 | |
| 305 | def split(s, comments=False, posix=True): |
| 306 | """Split the string *s* using shell-like syntax.""" |
no test coverage detected