(self, dw, m, area)
| 2805 | return val |
| 2806 | |
| 2807 | def run(self, dw, m, area): |
| 2808 | mupdf.fz_run_display_list( |
| 2809 | self.this, |
| 2810 | dw.device, |
| 2811 | JM_matrix_from_py(m), |
| 2812 | JM_rect_from_py(area), |
| 2813 | mupdf.FzCookie(), |
| 2814 | ) |
| 2815 | |
| 2816 | if g_use_extra: |
| 2817 | extra_FzDocument_insert_pdf = extra.FzDocument_insert_pdf |
nothing calls this directly
no test coverage detected