(self, c, zap)
| 430 | else: |
| 431 | return '' |
| 432 | def issymbol(self, c, zap): |
| 433 | return c.isalpha() or c.isdigit() or c in zap |
| 434 | def skip_until(self, s, pos, zap, way): |
| 435 | stop = -1 if way < 0 else len(s) |
| 436 | while pos != stop and not self.issymbol(s[pos], zap): |
no outgoing calls
no test coverage detected