| 3346 | return SwigPyBuiltin_hashfunc_closure(wrapper, a); \ |
| 3347 | } |
| 3348 | SWIGINTERN Py_hash_t |
| 3349 | SwigPyBuiltin_hashfunc_closure(SwigPyWrapperFunction wrapper, PyObject *a) { |
| 3350 | PyObject *pyresult; |
| 3351 | Py_hash_t result; |
| 3352 | pyresult = wrapper(a, NULL); |
| 3353 | if (!pyresult) |
| 3354 | return -1; |
| 3355 | result = SWIG_PyNumber_AsPyHash(pyresult); |
| 3356 | Py_DECREF(pyresult); |
| 3357 | return result; |
| 3358 | } |
| 3359 | |
| 3360 | #define SWIGPY_ITERNEXTFUNC_CLOSURE(wrapper) \ |
| 3361 | SWIGINTERN PyObject * \ |
nothing calls this directly
no test coverage detected