Get metadata.
(self, key)
| 3888 | return rc |
| 3889 | |
| 3890 | def _getMetadata(self, key): |
| 3891 | """Get metadata.""" |
| 3892 | try: |
| 3893 | return mupdf.fz_lookup_metadata2( self.this, key) |
| 3894 | except Exception: |
| 3895 | if g_exceptions_verbose > 2: exception_info() |
| 3896 | return '' |
| 3897 | |
| 3898 | def _getOLRootNumber(self): |
| 3899 | """Get xref of Outline Root, create it if missing.""" |
no test coverage detected