| 1774 | } |
| 1775 | |
| 1776 | SWIGRUNTIME PyObject * |
| 1777 | SwigPyObject_New(void *ptr, swig_type_info *ty, int own) |
| 1778 | { |
| 1779 | SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); |
| 1780 | if (sobj) { |
| 1781 | sobj->ptr = ptr; |
| 1782 | sobj->ty = ty; |
| 1783 | sobj->own = own; |
| 1784 | sobj->next = 0; |
| 1785 | } |
| 1786 | return (PyObject *)sobj; |
| 1787 | } |
| 1788 | |
| 1789 | /* ----------------------------------------------------------------------------- |
| 1790 | * Implements a simple Swig Packed type, and use it instead of string |
no outgoing calls
no test coverage detected