MCPcopy Create free account
hub / github.com/pymupdf/PyMuPDF / test_2907

Function test_2907

tests/test_2907.py:6–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4import pathlib
5
6def 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()

Callers

nothing calls this directly

Calls 2

pagesMethod · 0.80
clean_contentsMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…