(self, pyfile)
| 254 | raise NotImplementedError |
| 255 | |
| 256 | def handle_pages(self, pyfile): |
| 257 | try: |
| 258 | pages = int(search_pattern(self.PAGES_PATTERN, self.data).group(1)) |
| 259 | |
| 260 | except Exception: |
| 261 | pages = 1 |
| 262 | |
| 263 | links = self.links |
| 264 | for p in range(2, pages + 1): |
| 265 | self.data = self.load_page(p) |
| 266 | links.extend(self.get_links()) |
| 267 | |
| 268 | self.links = links |
| 269 | |
| 270 | def check_errors(self): |
| 271 | self.log_info(_("Checking for link errors...")) |
no test coverage detected