| 3120 | return SwigPyBuiltin_binaryfunc_closure(wrapper, a, b); \ |
| 3121 | } |
| 3122 | SWIGINTERN PyObject * |
| 3123 | SwigPyBuiltin_binaryfunc_closure(SwigPyWrapperFunction wrapper, PyObject *a, PyObject *b) { |
| 3124 | PyObject *tuple, *result; |
| 3125 | tuple = PyTuple_New(1); |
| 3126 | assert(tuple); |
| 3127 | Py_INCREF(b); |
| 3128 | PyTuple_SET_ITEM(tuple, 0, b); |
| 3129 | result = wrapper(a, tuple); |
| 3130 | Py_DECREF(tuple); |
| 3131 | return result; |
| 3132 | } |
| 3133 | |
| 3134 | typedef ternaryfunc ternarycallfunc; |
| 3135 |
nothing calls this directly
no outgoing calls
no test coverage detected