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