(mod, key, value)
| 19872 | setattr(Widget, key, value) |
| 19873 | |
| 19874 | def SETATTR_DROP(mod, key, value): |
| 19875 | # Original C code for this function deletes if PyObject* is NULL. We |
| 19876 | # don't have a representation for that in Python - e.g. None is not |
| 19877 | # represented by NULL. |
| 19878 | setattr(mod, key, value) |
| 19879 | |
| 19880 | #log( '=== + mupdf.pdf_widget_type(tw)') |
| 19881 | field_type = mupdf.pdf_widget_type(tw.this) |
no outgoing calls
no test coverage detected
searching dependent graphs…