| 1664 | #endif |
| 1665 | |
| 1666 | SWIGRUNTIMEINLINE int |
| 1667 | SwigPyObject_Check(PyObject *op) { |
| 1668 | #ifdef SWIGPYTHON_BUILTIN |
| 1669 | PyTypeObject *target_tp = SwigPyObject_type(); |
| 1670 | if (PyType_IsSubtype(op->ob_type, target_tp)) |
| 1671 | return 1; |
| 1672 | return (strcmp(op->ob_type->tp_name, "SwigPyObject") == 0); |
| 1673 | #else |
| 1674 | return (Py_TYPE(op) == SwigPyObject_type()) |
| 1675 | || (strcmp(Py_TYPE(op)->tp_name,"SwigPyObject") == 0); |
| 1676 | #endif |
| 1677 | } |
| 1678 | |
| 1679 | SWIGRUNTIME PyObject * |
| 1680 | SwigPyObject_New(void *ptr, swig_type_info *ty, int own); |
no outgoing calls
no test coverage detected