| 9903 | * ----------------------------------------------------------------------------- */ |
| 9904 | |
| 9905 | SWIGINTERN PyObject *SWIG_PyStaticMethod_New(PyObject *SWIGUNUSEDPARM(self), PyObject *func) { |
| 9906 | if (PyCFunction_Check(func)) { |
| 9907 | PyCFunctionObject *funcobj = (PyCFunctionObject *)func; |
| 9908 | PyMethodDef *ml = SWIG_PythonGetProxyDoc(funcobj->m_ml->ml_name); |
| 9909 | if (ml) |
| 9910 | func = PyCFunction_NewEx(ml, funcobj->m_self, funcobj->m_module); |
| 9911 | } |
| 9912 | return PyStaticMethod_New(func); |
| 9913 | } |
| 9914 | |
| 9915 | #ifdef __cplusplus |
| 9916 | } |
nothing calls this directly
no outgoing calls
no test coverage detected