Load first outline.
(self)
| 3959 | return value |
| 3960 | |
| 3961 | def _loadOutline(self): |
| 3962 | """Load first outline.""" |
| 3963 | doc = self.this |
| 3964 | assert isinstance( doc, mupdf.FzDocument) |
| 3965 | try: |
| 3966 | ol = mupdf.fz_load_outline( doc) |
| 3967 | except Exception: |
| 3968 | if g_exceptions_verbose > 1: exception_info() |
| 3969 | return |
| 3970 | return Outline( ol) |
| 3971 | |
| 3972 | def _make_page_map(self): |
| 3973 | """Make an array page number -> page object.""" |
no test coverage detected