(self, *args)
| 16377 | class TextPage: |
| 16378 | |
| 16379 | def __init__(self, *args): |
| 16380 | if args_match(args, mupdf.FzRect): |
| 16381 | mediabox = args[0] |
| 16382 | self.this = mupdf.FzStextPage( mediabox) |
| 16383 | elif args_match(args, mupdf.FzStextPage): |
| 16384 | self.this = args[0] |
| 16385 | else: |
| 16386 | raise Exception(f'Unrecognised args: {args}') |
| 16387 | self.thisown = True |
| 16388 | self.parent = None |
| 16389 | |
| 16390 | def _extractText(self, format_): |
| 16391 | this_tpage = self.this |
nothing calls this directly
no test coverage detected