(self, msg, offset=0)
| 297 | self.__next() |
| 298 | |
| 299 | def error(self, msg, offset=0): |
| 300 | if not self.istext: |
| 301 | msg = msg.encode('ascii', 'backslashreplace').decode('ascii') |
| 302 | return error(msg, self.string, self.tell() - offset) |
| 303 | |
| 304 | def checkgroupname(self, name, offset): |
| 305 | if not (self.istext or name.isascii()): |
no test coverage detected