comparison tests/test_2907.py @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents 1d09e1dec1d9
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
1 import pymupdf
2
3 import os.path
4 import pathlib
5
6 def test_2907():
7 # This test is for a bug in classic 'segfault trying to call clean_contents
8 # on certain pdfs with python 3.12', which we are not going to fix.
9 if not hasattr(pymupdf, 'mupdf'):
10 print('test_2907(): not running on classic because known to fail.')
11 return
12 path = os.path.abspath(f'{__file__}/../../tests/resources/test_2907.pdf')
13 pdf_file = pathlib.Path(path).read_bytes()
14 fitz_document = pymupdf.open(stream=pdf_file, filetype="application/pdf")
15
16 pdf_pages = list(fitz_document.pages())
17 (page,) = pdf_pages
18 page.clean_contents()