| 1736 | SwigPyObject_next(PyObject* v) |
| 1737 | #else |
| 1738 | SwigPyObject_next(PyObject* v, PyObject *SWIGUNUSEDPARM(args)) |
| 1739 | #endif |
| 1740 | { |
| 1741 | SwigPyObject *sobj = (SwigPyObject *) v; |
| 1742 | if (sobj->next) { |
| 1743 | Py_INCREF(sobj->next); |
| 1744 | return sobj->next; |
| 1745 | } else { |
| 1746 | return SWIG_Py_Void(); |
| 1747 | } |
| 1748 | } |
| 1749 | |
| 1750 | SWIGINTERN PyObject* |
| 1751 | #ifdef METH_NOARGS |
nothing calls this directly
no test coverage detected