https://github.com/pymupdf/PyMuPDF/issues/2969
()
| 337 | page.apply_redactions() |
| 338 | |
| 339 | def test_2969(): |
| 340 | ''' |
| 341 | https://github.com/pymupdf/PyMuPDF/issues/2969 |
| 342 | ''' |
| 343 | path = os.path.abspath(f'{__file__}/../../tests/resources/test_2969.pdf') |
| 344 | doc = pymupdf.open(path) |
| 345 | page = doc[0] |
| 346 | first_annot = list(page.annots())[0] |
| 347 | first_annot.next |
| 348 | |
| 349 | def test_file_info(): |
| 350 | path = os.path.abspath(f'{__file__}/../../tests/resources/test_annot_file_info.pdf') |
nothing calls this directly
no test coverage detected
searching dependent graphs…