(self, x, y)
| 772 | self.__move_y(y) |
| 773 | |
| 774 | def __move_tall(self, x, y): |
| 775 | assert 0 <= y - self.__offset < self.height, y - self.__offset |
| 776 | self.__write_code(self._cup, y - self.__offset, x) |
| 777 | |
| 778 | def __sigwinch(self, signum, frame): |
| 779 | self.height, self.width = self.getheightwidth() |
nothing calls this directly
no test coverage detected