| 1976 | } |
| 1977 | |
| 1978 | SWIGRUNTIME PyObject * |
| 1979 | SwigPyObject_New(void *ptr, swig_type_info *ty, int own) |
| 1980 | { |
| 1981 | SwigPyObject *sobj = PyObject_NEW(SwigPyObject, SwigPyObject_type()); |
| 1982 | if (sobj) { |
| 1983 | sobj->ptr = ptr; |
| 1984 | sobj->ty = ty; |
| 1985 | sobj->own = own; |
| 1986 | sobj->next = 0; |
| 1987 | } |
| 1988 | return (PyObject *)sobj; |
| 1989 | } |
| 1990 | |
| 1991 | /* ----------------------------------------------------------------------------- |
| 1992 | * Implements a simple Swig Packed type, and use it instead of string |
no outgoing calls
no test coverage detected