| 3095 | return SwigPyBuiltin_inquiry_closure(wrapper, a); \ |
| 3096 | } |
| 3097 | SWIGINTERN int |
| 3098 | SwigPyBuiltin_inquiry_closure(SwigPyWrapperFunction wrapper, PyObject *a) { |
| 3099 | PyObject *pyresult; |
| 3100 | int result; |
| 3101 | pyresult = wrapper(a, NULL); |
| 3102 | result = pyresult && PyObject_IsTrue(pyresult) ? 1 : 0; |
| 3103 | Py_XDECREF(pyresult); |
| 3104 | return result; |
| 3105 | } |
| 3106 | |
| 3107 | #define SWIGPY_GETITERFUNC_CLOSURE(wrapper) \ |
| 3108 | SWIGINTERN PyObject * \ |
nothing calls this directly
no outgoing calls
no test coverage detected