(a)
| 103 | JM_annot_id_stem = pymupdf.JM_annot_id_stem |
| 104 | |
| 105 | def get_members(a): |
| 106 | ret = dict() |
| 107 | for n in dir(a): |
| 108 | if not n.startswith('_'): |
| 109 | v = getattr(a, n) |
| 110 | ret[n] = v |
| 111 | return ret |
| 112 | |
| 113 | # Allow post-test checking that pymupdf._globals has not changed. |
| 114 | _globals_pre = get_members(pymupdf._globals) |
no outgoing calls
no test coverage detected
searching dependent graphs…