Delete object.
(self, xref)
| 3123 | mupdf.ll_pdf_drop_page_tree( pdf.m_internal) |
| 3124 | |
| 3125 | def _deleteObject(self, xref): |
| 3126 | """Delete object.""" |
| 3127 | pdf = _as_pdf_document(self) |
| 3128 | if not _INRANGE(xref, 1, mupdf.pdf_xref_len(pdf)-1): |
| 3129 | raise ValueError( MSG_BAD_XREF) |
| 3130 | mupdf.pdf_delete_object(pdf, xref) |
| 3131 | |
| 3132 | def _do_links( |
| 3133 | doc1: 'Document', |
nothing calls this directly
no test coverage detected