| 1715 | } |
| 1716 | |
| 1717 | SWIGRUNTIME PyObject* |
| 1718 | SwigPyObject_append(PyObject* v, PyObject* next) |
| 1719 | { |
| 1720 | SwigPyObject *sobj = (SwigPyObject *) v; |
| 1721 | #ifndef METH_O |
| 1722 | PyObject *tmp = 0; |
| 1723 | if (!PyArg_ParseTuple(next,(char *)"O:append", &tmp)) return NULL; |
| 1724 | next = tmp; |
| 1725 | #endif |
| 1726 | if (!SwigPyObject_Check(next)) { |
| 1727 | return NULL; |
| 1728 | } |
| 1729 | sobj->next = next; |
| 1730 | Py_INCREF(next); |
| 1731 | return SWIG_Py_Void(); |
| 1732 | } |
| 1733 | |
| 1734 | SWIGRUNTIME PyObject* |
| 1735 | #ifdef METH_NOARGS |
no test coverage detected