Commit 68033aa9 authored by Pavel Vainerman's avatar Pavel Vainerman

(uniset-python): swig перегенерировал файлы...

parent 807617b0
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org). * This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.10 * Version 3.0.0
* *
* This file is not intended to be easily readable and contains a number of * This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make * coding conventions designed to improve portability and efficiency. Do not make
* changes to this file unless you know what you are doing--modify the SWIG * changes to this file unless you know what you are doing--modify the SWIG
* interface file instead. * interface file instead.
* ----------------------------------------------------------------------------- */ * ----------------------------------------------------------------------------- */
#define SWIGPYTHON #define SWIGPYTHON
...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() { ...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() {
#ifndef SWIGUNUSED #ifndef SWIGUNUSED
# if defined(__GNUC__) # if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
# elif defined(__ICC) # elif defined(__ICC)
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
#endif #endif
#ifndef SWIG_MSC_UNSUPPRESS_4505 #ifndef SWIG_MSC_UNSUPPRESS_4505
# if defined(_MSC_VER) # if defined(_MSC_VER)
# pragma warning(disable : 4505) /* unreferenced local function has been removed */ # pragma warning(disable : 4505) /* unreferenced local function has been removed */
# endif # endif
#endif #endif
#ifndef SWIGUNUSEDPARM #ifndef SWIGUNUSEDPARM
# ifdef __cplusplus # ifdef __cplusplus
# define SWIGUNUSEDPARM(p) # define SWIGUNUSEDPARM(p)
# else # else
# define SWIGUNUSEDPARM(p) p SWIGUNUSED # define SWIGUNUSEDPARM(p) p SWIGUNUSED
# endif # endif
#endif #endif
...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() { ...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() {
# define SWIGSTDCALL __stdcall # define SWIGSTDCALL __stdcall
# else # else
# define SWIGSTDCALL # define SWIGSTDCALL
# endif # endif
#endif #endif
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() { ...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() {
/* Python.h has to appear first */ #if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
#include <Python.h> /* Use debug wrappers with the Python release dll */
# undef _DEBUG
# include <Python.h>
# define _DEBUG
#else
# include <Python.h>
#endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* swigrun.swg * swigrun.swg
...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() { ...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() {
You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
creating a static or dynamic library from the SWIG runtime code. creating a static or dynamic library from the SWIG runtime code.
In 99.9% of the cases, SWIG just needs to declare them as 'static'. In 99.9% of the cases, SWIG just needs to declare them as 'static'.
But only do this if strictly necessary, ie, if you have problems But only do this if strictly necessary, ie, if you have problems
with your compiler or suchlike. with your compiler or suchlike.
*/ */
...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() { ...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() {
#define SWIG_POINTER_OWN 0x1 #define SWIG_POINTER_OWN 0x1
/* /*
Flags/methods for returning states. Flags/methods for returning states.
The SWIG conversion methods, as ConvertPtr, return an integer The SWIG conversion methods, as ConvertPtr, return an integer
that tells if the conversion was successful or not. And if not, that tells if the conversion was successful or not. And if not,
an error code can be returned (see swigerrors.swg for the codes). an error code can be returned (see swigerrors.swg for the codes).
Use the following macros/flags to set or process the returning Use the following macros/flags to set or process the returning
states. states.
In old versions of SWIG, code such as the following was usually written: In old versions of SWIG, code such as the following was usually written:
if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() { ...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() {
} else { } else {
// fail code // fail code
} }
I.e., now SWIG_ConvertPtr can return new objects and you can I.e., now SWIG_ConvertPtr can return new objects and you can
identify the case and take care of the deallocation. Of course that identify the case and take care of the deallocation. Of course that
also requires SWIG_ConvertPtr to return new result values, such as also requires SWIG_ConvertPtr to return new result values, such as
int SWIG_ConvertPtr(obj, ptr,...) { int SWIG_ConvertPtr(obj, ptr,...) {
if (<obj is ok>) { if (<obj is ok>) {
if (<need new object>) { if (<need new object>) {
*ptr = <ptr to new allocated object>; *ptr = <ptr to new allocated object>;
return SWIG_NEWOBJ; return SWIG_NEWOBJ;
} else { } else {
*ptr = <ptr to old object>; *ptr = <ptr to old object>;
return SWIG_OLDOBJ; return SWIG_OLDOBJ;
} }
} else { } else {
return SWIG_BADOBJ; return SWIG_BADOBJ;
} }
} }
Of course, returning the plain '0(success)/-1(fail)' still works, but you can be Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() { ...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() {
int fooi(int); int fooi(int);
and you call and you call
food(1) // cast rank '1' (1 -> 1.0) food(1) // cast rank '1' (1 -> 1.0)
fooi(1) // cast rank '0' fooi(1) // cast rank '0'
just use the SWIG_AddCast()/SWIG_CheckState() just use the SWIG_AddCast()/SWIG_CheckState()
*/ */
#define SWIG_OK (0) #define SWIG_OK (0)
#define SWIG_ERROR (-1) #define SWIG_ERROR (-1)
#define SWIG_IsOK(r) (r >= 0) #define SWIG_IsOK(r) (r >= 0)
#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
/* The CastRankLimit says how many bits are used for the cast rank */ /* The CastRankLimit says how many bits are used for the cast rank */
#define SWIG_CASTRANKLIMIT (1 << 8) #define SWIG_CASTRANKLIMIT (1 << 8)
...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() { ...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() {
# endif # endif
# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
SWIGINTERNINLINE int SWIG_AddCast(int r) { SWIGINTERNINLINE int SWIG_AddCast(int r) {
return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
} }
SWIGINTERNINLINE int SWIG_CheckState(int r) { SWIGINTERNINLINE int SWIG_CheckState(int r) {
return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
} }
#else /* no cast-rank mode */ #else /* no cast-rank mode */
# define SWIG_AddCast(r) (r) # define SWIG_AddCast(r) (r)
...@@ -363,7 +369,7 @@ typedef struct swig_module_info { ...@@ -363,7 +369,7 @@ typedef struct swig_module_info {
void *clientdata; /* Language specific module data */ void *clientdata; /* Language specific module data */
} swig_module_info; } swig_module_info;
/* /*
Compare two type names skipping the space characters, therefore Compare two type names skipping the space characters, therefore
"char*" == "char *" and "Class<int>" == "Class<int >", etc. "char*" == "char *" and "Class<int>" == "Class<int >", etc.
...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) { ...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
return 0; return 0;
} }
/* /*
Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
*/ */
SWIGRUNTIME swig_cast_info * SWIGRUNTIME swig_cast_info *
...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { ...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
} }
/* /*
Dynamic pointer casting. Down an inheritance hierarchy Dynamic pointer casting. Down an inheritance hierarchy
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) { ...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) {
return type->name; return type->name;
} }
/* /*
Set the clientdata field for a type Set the clientdata field for a type
*/ */
SWIGRUNTIME void SWIGRUNTIME void
...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { ...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
swig_cast_info *cast = ti->cast; swig_cast_info *cast = ti->cast;
/* if (ti->clientdata == clientdata) return; */ /* if (ti->clientdata == clientdata) return; */
ti->clientdata = clientdata; ti->clientdata = clientdata;
while (cast) { while (cast) {
if (!cast->converter) { if (!cast->converter) {
swig_type_info *tc = cast->type; swig_type_info *tc = cast->type;
if (!tc->clientdata) { if (!tc->clientdata) {
SWIG_TypeClientData(tc, clientdata); SWIG_TypeClientData(tc, clientdata);
} }
} }
cast = cast->next; cast = cast->next;
} }
} }
...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { ...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
SWIG_TypeClientData(ti, clientdata); SWIG_TypeClientData(ti, clientdata);
ti->owndata = 1; ti->owndata = 1;
} }
/* /*
Search for a swig_type_info structure only by mangled name Search for a swig_type_info structure only by mangled name
Search is a O(log #types) Search is a O(log #types)
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_MangledTypeQueryModule(swig_module_info *start, SWIG_MangledTypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
if (iter->size) { if (iter->size) {
register size_t l = 0; size_t l = 0;
register size_t r = iter->size - 1; size_t r = iter->size - 1;
do { do {
/* since l+r >= 0, we can (>> 1) instead (/ 2) */ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
register size_t i = (l + r) >> 1; size_t i = (l + r) >> 1;
const char *iname = iter->types[i]->name; const char *iname = iter->types[i]->name;
if (iname) { if (iname) {
register int compare = strcmp(name, iname); int compare = strcmp(name, iname);
if (compare == 0) { if (compare == 0) {
return iter->types[i]; return iter->types[i];
} else if (compare < 0) { } else if (compare < 0) {
if (i) { if (i) {
...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start, ...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start,
Search for a swig_type_info structure for either a mangled name or a human readable name. Search for a swig_type_info structure for either a mangled name or a human readable name.
It first searches the mangled names of the types, which is a O(log #types) It first searches the mangled names of the types, which is a O(log #types)
If a type is not found it then searches the human readable names, which is O(#types). If a type is not found it then searches the human readable names, which is O(#types).
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_TypeQueryModule(swig_module_info *start, SWIG_TypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
/* STEP 1: Search the name field using binary search */ /* STEP 1: Search the name field using binary search */
swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start,
of the str field (the human readable name) */ of the str field (the human readable name) */
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
register size_t i = 0; size_t i = 0;
for (; i < iter->size; ++i) { for (; i < iter->size; ++i) {
if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
return iter->types[i]; return iter->types[i];
...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start,
iter = iter->next; iter = iter->next;
} while (iter != end); } while (iter != end);
} }
/* neither found a match */ /* neither found a match */
return 0; return 0;
} }
/* /*
Pack binary data into a string Pack binary data into a string
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
SWIG_PackData(char *c, void *ptr, size_t sz) { SWIG_PackData(char *c, void *ptr, size_t sz) {
static const char hex[17] = "0123456789abcdef"; static const char hex[17] = "0123456789abcdef";
register const unsigned char *u = (unsigned char *) ptr; const unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register unsigned char uu = *u; unsigned char uu = *u;
*(c++) = hex[(uu & 0xf0) >> 4]; *(c++) = hex[(uu & 0xf0) >> 4];
*(c++) = hex[uu & 0xf]; *(c++) = hex[uu & 0xf];
} }
return c; return c;
} }
/* /*
Unpack binary data from a string Unpack binary data from a string
*/ */
SWIGRUNTIME const char * SWIGRUNTIME const char *
SWIG_UnpackData(const char *c, void *ptr, size_t sz) { SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
register unsigned char *u = (unsigned char *) ptr; unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register char d = *(c++); char d = *(c++);
register unsigned char uu; unsigned char uu;
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu = ((d - '0') << 4); uu = ((d - '0') << 4);
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu = ((d - ('a'-10)) << 4); uu = ((d - ('a'-10)) << 4);
else else
return (char *) 0; return (char *) 0;
d = *(c++); d = *(c++);
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu |= (d - '0'); uu |= (d - '0');
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu |= (d - ('a'-10)); uu |= (d - ('a'-10));
else else
return (char *) 0; return (char *) 0;
*u = uu; *u = uu;
} }
return c; return c;
} }
/* /*
Pack 'void *' into a string buffer. Pack 'void *' into a string buffer.
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { ...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
#endif #endif
/* Errors in SWIG */ /* Errors in SWIG */
#define SWIG_UnknownError -1 #define SWIG_UnknownError -1
#define SWIG_IOError -2 #define SWIG_IOError -2
#define SWIG_RuntimeError -3 #define SWIG_RuntimeError -3
#define SWIG_IndexError -4 #define SWIG_IndexError -4
#define SWIG_TypeError -5 #define SWIG_TypeError -5
#define SWIG_DivisionByZero -6 #define SWIG_DivisionByZero -6
#define SWIG_OverflowError -7 #define SWIG_OverflowError -7
#define SWIG_SyntaxError -8 #define SWIG_SyntaxError -8
#define SWIG_ValueError -9 #define SWIG_ValueError -9
#define SWIG_SystemError -10 #define SWIG_SystemError -10
#define SWIG_AttributeError -11 #define SWIG_AttributeError -11
#define SWIG_MemoryError -12 #define SWIG_MemoryError -12
#define SWIG_NullReferenceError -13 #define SWIG_NullReferenceError -13
...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
} }
if (!PyTuple_Check(args)) { if (!PyTuple_Check(args)) {
if (min <= 1 && max >= 1) { if (min <= 1 && max >= 1) {
register int i; int i;
objs[0] = args; objs[0] = args;
for (i = 1; i < max; ++i) { for (i = 1; i < max; ++i) {
objs[i] = 0; objs[i] = 0;
...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
return 0; return 0;
} else { } else {
register Py_ssize_t l = PyTuple_GET_SIZE(args); Py_ssize_t l = PyTuple_GET_SIZE(args);
if (l < min) { if (l < min) {
PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
name, (min == max ? "" : "at least "), (int)min, (int)l); name, (min == max ? "" : "at least "), (int)min, (int)l);
...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
name, (min == max ? "" : "at most "), (int)max, (int)l); name, (min == max ? "" : "at most "), (int)max, (int)l);
return 0; return 0;
} else { } else {
register int i; int i;
for (i = 0; i < l; ++i) { for (i = 0; i < l; ++i) {
objs[i] = PyTuple_GET_ITEM(args, i); objs[i] = PyTuple_GET_ITEM(args, i);
} }
...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args) ...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args)
} }
SWIGRUNTIME int SWIGRUNTIME int
SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags))
{
char *str;
#ifdef METH_NOARGS
PyObject *repr = SwigPyObject_repr(v);
#else
PyObject *repr = SwigPyObject_repr(v, NULL);
#endif
if (repr) {
str = SWIG_Python_str_AsChar(repr);
fputs(str, fp);
SWIG_Python_str_DelForPy3(str);
Py_DECREF(repr);
return 0;
} else {
return 1;
}
}
SWIGRUNTIME PyObject *
SwigPyObject_str(SwigPyObject *v)
{
char result[SWIG_BUFFER_SIZE];
return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ?
SWIG_Python_str_FromChar(result) : 0;
}
SWIGRUNTIME int
SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
{ {
void *i = v->ptr; void *i = v->ptr;
...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) {
sizeof(SwigPyObject), /* tp_basicsize */ sizeof(SwigPyObject), /* tp_basicsize */
0, /* tp_itemsize */ 0, /* tp_itemsize */
(destructor)SwigPyObject_dealloc, /* tp_dealloc */ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
(printfunc)SwigPyObject_print, /* tp_print */ 0, /* tp_print */
#if PY_VERSION_HEX < 0x02020000 #if PY_VERSION_HEX < 0x02020000
(getattrfunc)SwigPyObject_getattr, /* tp_getattr */ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
#else #else
...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) {
0, /* tp_as_mapping */ 0, /* tp_as_mapping */
(hashfunc)0, /* tp_hash */ (hashfunc)0, /* tp_hash */
(ternaryfunc)0, /* tp_call */ (ternaryfunc)0, /* tp_call */
(reprfunc)SwigPyObject_str, /* tp_str */ 0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */ PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */ 0, /* tp_setattro */
0, /* tp_as_buffer */ 0, /* tp_as_buffer */
...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int ...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int
SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
int res; int res;
SwigPyObject *sobj; SwigPyObject *sobj;
int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
if (!obj) if (!obj)
return SWIG_ERROR; return SWIG_ERROR;
if (obj == Py_None) { if (obj == Py_None && !implicit_conv) {
if (ptr) if (ptr)
*ptr = 0; *ptr = 0;
return SWIG_OK; return SWIG_OK;
...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
res = SWIG_OK; res = SWIG_OK;
} else { } else {
if (flags & SWIG_POINTER_IMPLICIT_CONV) { if (implicit_conv) {
SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
if (data && !data->implicitconv) { if (data && !data->implicitconv) {
PyObject *klass = data->klass; PyObject *klass = data->klass;
...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
} }
} }
if (!SWIG_IsOK(res) && obj == Py_None) {
if (ptr)
*ptr = 0;
if (PyErr_Occurred())
PyErr_Clear();
res = SWIG_OK;
}
} }
return res; return res;
} }
...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) ...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
} }
} else { } else {
#if PY_VERSION_HEX >= 0x03000000 #if PY_VERSION_HEX >= 0x03000000
inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); inst = ((PyTypeObject*) data->newargs)->tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
if (inst) { if (inst) {
PyObject_SetAttr(inst, SWIG_This(), swig_this); PyObject_SetAttr(inst, SWIG_This(), swig_this);
Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
PyObject *descr; PyObject *descr;
PyObject *encoded_name; PyObject *encoded_name;
descrsetfunc f; descrsetfunc f;
int res; int res = -1;
# ifdef Py_USING_UNICODE # ifdef Py_USING_UNICODE
if (PyString_Check(name)) { if (PyString_Check(name)) {
...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
goto done; goto done;
} }
res = -1;
descr = _PyType_Lookup(tp, name); descr = _PyType_Lookup(tp, name);
f = NULL; f = NULL;
if (descr != NULL) if (descr != NULL)
...@@ -2980,7 +2965,7 @@ static swig_module_info swig_module = {swig_types, 5, 0, 0, 0, 0}; ...@@ -2980,7 +2965,7 @@ static swig_module_info swig_module = {swig_types, 5, 0, 0, 0, 0};
#endif #endif
#define SWIG_name "_pyUConnector" #define SWIG_name "_pyUConnector"
#define SWIGVERSION 0x020010 #define SWIGVERSION 0x030000
#define SWIG_VERSION SWIGVERSION #define SWIG_VERSION SWIGVERSION
...@@ -3478,7 +3463,7 @@ SWIGINTERN PyObject *_wrap_Params_argv_set(PyObject *SWIGUNUSEDPARM(self), PyObj ...@@ -3478,7 +3463,7 @@ SWIGINTERN PyObject *_wrap_Params_argv_set(PyObject *SWIGUNUSEDPARM(self), PyObj
{ {
if (arg2) { if (arg2) {
size_t ii = 0; size_t ii = 0;
for (; ii < (size_t)UTypes::Params::max; ++ii) arg1->argv[ii] = arg2[ii]; for (; ii < (size_t)UTypes::Params::max; ++ii) *(char * *)&arg1->argv[ii] = *((char * *)arg2 + ii);
} else { } else {
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""argv""' of type '""char *[UTypes::Params::max]""'"); SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""argv""' of type '""char *[UTypes::Params::max]""'");
} }
...@@ -4095,18 +4080,18 @@ static swig_const_info swig_const_table[] = { ...@@ -4095,18 +4080,18 @@ static swig_const_info swig_const_table[] = {
#endif #endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* Type initialization: * Type initialization:
* This problem is tough by the requirement that no dynamic * This problem is tough by the requirement that no dynamic
* memory is used. Also, since swig_type_info structures store pointers to * memory is used. Also, since swig_type_info structures store pointers to
* swig_cast_info structures and swig_cast_info structures store pointers back * swig_cast_info structures and swig_cast_info structures store pointers back
* to swig_type_info structures, we need some lookup code at initialization. * to swig_type_info structures, we need some lookup code at initialization.
* The idea is that swig generates all the structures that are needed. * The idea is that swig generates all the structures that are needed.
* The runtime then collects these partially filled structures. * The runtime then collects these partially filled structures.
* The SWIG_InitializeModule function takes these initial arrays out of * The SWIG_InitializeModule function takes these initial arrays out of
* swig_module, and does all the lookup, filling in the swig_module.types * swig_module, and does all the lookup, filling in the swig_module.types
* array with the correct data and linking the correct swig_cast_info * array with the correct data and linking the correct swig_cast_info
* structures together. * structures together.
* *
* The generated swig_type_info structures are assigned staticly to an initial * The generated swig_type_info structures are assigned statically to an initial
* array. We just loop through that array, and handle each type individually. * array. We just loop through that array, and handle each type individually.
* First we lookup if this type has been already loaded, and if so, use the * First we lookup if this type has been already loaded, and if so, use the
* loaded structure instead of the generated one. Then we have to fill in the * loaded structure instead of the generated one. Then we have to fill in the
...@@ -4116,17 +4101,17 @@ static swig_const_info swig_const_table[] = { ...@@ -4116,17 +4101,17 @@ static swig_const_info swig_const_table[] = {
* a column is one of the swig_cast_info structures for that type. * a column is one of the swig_cast_info structures for that type.
* The cast_initial array is actually an array of arrays, because each row has * The cast_initial array is actually an array of arrays, because each row has
* a variable number of columns. So to actually build the cast linked list, * a variable number of columns. So to actually build the cast linked list,
* we find the array of casts associated with the type, and loop through it * we find the array of casts associated with the type, and loop through it
* adding the casts to the list. The one last trick we need to do is making * adding the casts to the list. The one last trick we need to do is making
* sure the type pointer in the swig_cast_info struct is correct. * sure the type pointer in the swig_cast_info struct is correct.
* *
* First off, we lookup the cast->type name to see if it is already loaded. * First off, we lookup the cast->type name to see if it is already loaded.
* There are three cases to handle: * There are three cases to handle:
* 1) If the cast->type has already been loaded AND the type we are adding * 1) If the cast->type has already been loaded AND the type we are adding
* casting info to has not been loaded (it is in this module), THEN we * casting info to has not been loaded (it is in this module), THEN we
* replace the cast->type pointer with the type pointer that has already * replace the cast->type pointer with the type pointer that has already
* been loaded. * been loaded.
* 2) If BOTH types (the one we are adding casting info to, and the * 2) If BOTH types (the one we are adding casting info to, and the
* cast->type) are loaded, THEN the cast info has already been loaded by * cast->type) are loaded, THEN the cast info has already been loaded by
* the previous module so we just ignore it. * the previous module so we just ignore it.
* 3) Finally, if cast->type has not already been loaded, then we add that * 3) Finally, if cast->type has not already been loaded, then we add that
...@@ -4189,7 +4174,7 @@ SWIG_InitializeModule(void *clientdata) { ...@@ -4189,7 +4174,7 @@ SWIG_InitializeModule(void *clientdata) {
module_head->next = &swig_module; module_head->next = &swig_module;
} }
/* When multiple interpeters are used, a module could have already been initialized in /* When multiple interpreters are used, a module could have already been initialized in
a different interpreter, but not yet have a pointer in this interpreter. a different interpreter, but not yet have a pointer in this interpreter.
In this case, we do not want to continue adding types... everything should be In this case, we do not want to continue adding types... everything should be
set up already */ set up already */
...@@ -4436,7 +4421,7 @@ extern "C" { ...@@ -4436,7 +4421,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == NULL && !PyErr_Occurred()) { if (res == NULL && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
...@@ -4453,7 +4438,7 @@ extern "C" { ...@@ -4453,7 +4438,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == 1 && !PyErr_Occurred()) { if (res == 1 && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
......
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org). * This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.10 * Version 3.0.0
* *
* This file is not intended to be easily readable and contains a number of * This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make * coding conventions designed to improve portability and efficiency. Do not make
* changes to this file unless you know what you are doing--modify the SWIG * changes to this file unless you know what you are doing--modify the SWIG
* interface file instead. * interface file instead.
* ----------------------------------------------------------------------------- */ * ----------------------------------------------------------------------------- */
#define SWIGPYTHON #define SWIGPYTHON
...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() { ...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() {
#ifndef SWIGUNUSED #ifndef SWIGUNUSED
# if defined(__GNUC__) # if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
# elif defined(__ICC) # elif defined(__ICC)
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
#endif #endif
#ifndef SWIG_MSC_UNSUPPRESS_4505 #ifndef SWIG_MSC_UNSUPPRESS_4505
# if defined(_MSC_VER) # if defined(_MSC_VER)
# pragma warning(disable : 4505) /* unreferenced local function has been removed */ # pragma warning(disable : 4505) /* unreferenced local function has been removed */
# endif # endif
#endif #endif
#ifndef SWIGUNUSEDPARM #ifndef SWIGUNUSEDPARM
# ifdef __cplusplus # ifdef __cplusplus
# define SWIGUNUSEDPARM(p) # define SWIGUNUSEDPARM(p)
# else # else
# define SWIGUNUSEDPARM(p) p SWIGUNUSED # define SWIGUNUSEDPARM(p) p SWIGUNUSED
# endif # endif
#endif #endif
...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() { ...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() {
# define SWIGSTDCALL __stdcall # define SWIGSTDCALL __stdcall
# else # else
# define SWIGSTDCALL # define SWIGSTDCALL
# endif # endif
#endif #endif
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() { ...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() {
/* Python.h has to appear first */ #if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
#include <Python.h> /* Use debug wrappers with the Python release dll */
# undef _DEBUG
# include <Python.h>
# define _DEBUG
#else
# include <Python.h>
#endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* swigrun.swg * swigrun.swg
...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() { ...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() {
You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
creating a static or dynamic library from the SWIG runtime code. creating a static or dynamic library from the SWIG runtime code.
In 99.9% of the cases, SWIG just needs to declare them as 'static'. In 99.9% of the cases, SWIG just needs to declare them as 'static'.
But only do this if strictly necessary, ie, if you have problems But only do this if strictly necessary, ie, if you have problems
with your compiler or suchlike. with your compiler or suchlike.
*/ */
...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() { ...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() {
#define SWIG_POINTER_OWN 0x1 #define SWIG_POINTER_OWN 0x1
/* /*
Flags/methods for returning states. Flags/methods for returning states.
The SWIG conversion methods, as ConvertPtr, return an integer The SWIG conversion methods, as ConvertPtr, return an integer
that tells if the conversion was successful or not. And if not, that tells if the conversion was successful or not. And if not,
an error code can be returned (see swigerrors.swg for the codes). an error code can be returned (see swigerrors.swg for the codes).
Use the following macros/flags to set or process the returning Use the following macros/flags to set or process the returning
states. states.
In old versions of SWIG, code such as the following was usually written: In old versions of SWIG, code such as the following was usually written:
if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() { ...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() {
} else { } else {
// fail code // fail code
} }
I.e., now SWIG_ConvertPtr can return new objects and you can I.e., now SWIG_ConvertPtr can return new objects and you can
identify the case and take care of the deallocation. Of course that identify the case and take care of the deallocation. Of course that
also requires SWIG_ConvertPtr to return new result values, such as also requires SWIG_ConvertPtr to return new result values, such as
int SWIG_ConvertPtr(obj, ptr,...) { int SWIG_ConvertPtr(obj, ptr,...) {
if (<obj is ok>) { if (<obj is ok>) {
if (<need new object>) { if (<need new object>) {
*ptr = <ptr to new allocated object>; *ptr = <ptr to new allocated object>;
return SWIG_NEWOBJ; return SWIG_NEWOBJ;
} else { } else {
*ptr = <ptr to old object>; *ptr = <ptr to old object>;
return SWIG_OLDOBJ; return SWIG_OLDOBJ;
} }
} else { } else {
return SWIG_BADOBJ; return SWIG_BADOBJ;
} }
} }
Of course, returning the plain '0(success)/-1(fail)' still works, but you can be Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() { ...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() {
int fooi(int); int fooi(int);
and you call and you call
food(1) // cast rank '1' (1 -> 1.0) food(1) // cast rank '1' (1 -> 1.0)
fooi(1) // cast rank '0' fooi(1) // cast rank '0'
just use the SWIG_AddCast()/SWIG_CheckState() just use the SWIG_AddCast()/SWIG_CheckState()
*/ */
#define SWIG_OK (0) #define SWIG_OK (0)
#define SWIG_ERROR (-1) #define SWIG_ERROR (-1)
#define SWIG_IsOK(r) (r >= 0) #define SWIG_IsOK(r) (r >= 0)
#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
/* The CastRankLimit says how many bits are used for the cast rank */ /* The CastRankLimit says how many bits are used for the cast rank */
#define SWIG_CASTRANKLIMIT (1 << 8) #define SWIG_CASTRANKLIMIT (1 << 8)
...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() { ...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() {
# endif # endif
# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
SWIGINTERNINLINE int SWIG_AddCast(int r) { SWIGINTERNINLINE int SWIG_AddCast(int r) {
return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
} }
SWIGINTERNINLINE int SWIG_CheckState(int r) { SWIGINTERNINLINE int SWIG_CheckState(int r) {
return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
} }
#else /* no cast-rank mode */ #else /* no cast-rank mode */
# define SWIG_AddCast(r) (r) # define SWIG_AddCast(r) (r)
...@@ -363,7 +369,7 @@ typedef struct swig_module_info { ...@@ -363,7 +369,7 @@ typedef struct swig_module_info {
void *clientdata; /* Language specific module data */ void *clientdata; /* Language specific module data */
} swig_module_info; } swig_module_info;
/* /*
Compare two type names skipping the space characters, therefore Compare two type names skipping the space characters, therefore
"char*" == "char *" and "Class<int>" == "Class<int >", etc. "char*" == "char *" and "Class<int>" == "Class<int >", etc.
...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) { ...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
return 0; return 0;
} }
/* /*
Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
*/ */
SWIGRUNTIME swig_cast_info * SWIGRUNTIME swig_cast_info *
...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { ...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
} }
/* /*
Dynamic pointer casting. Down an inheritance hierarchy Dynamic pointer casting. Down an inheritance hierarchy
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) { ...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) {
return type->name; return type->name;
} }
/* /*
Set the clientdata field for a type Set the clientdata field for a type
*/ */
SWIGRUNTIME void SWIGRUNTIME void
...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { ...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
swig_cast_info *cast = ti->cast; swig_cast_info *cast = ti->cast;
/* if (ti->clientdata == clientdata) return; */ /* if (ti->clientdata == clientdata) return; */
ti->clientdata = clientdata; ti->clientdata = clientdata;
while (cast) { while (cast) {
if (!cast->converter) { if (!cast->converter) {
swig_type_info *tc = cast->type; swig_type_info *tc = cast->type;
if (!tc->clientdata) { if (!tc->clientdata) {
SWIG_TypeClientData(tc, clientdata); SWIG_TypeClientData(tc, clientdata);
} }
} }
cast = cast->next; cast = cast->next;
} }
} }
...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { ...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
SWIG_TypeClientData(ti, clientdata); SWIG_TypeClientData(ti, clientdata);
ti->owndata = 1; ti->owndata = 1;
} }
/* /*
Search for a swig_type_info structure only by mangled name Search for a swig_type_info structure only by mangled name
Search is a O(log #types) Search is a O(log #types)
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_MangledTypeQueryModule(swig_module_info *start, SWIG_MangledTypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
if (iter->size) { if (iter->size) {
register size_t l = 0; size_t l = 0;
register size_t r = iter->size - 1; size_t r = iter->size - 1;
do { do {
/* since l+r >= 0, we can (>> 1) instead (/ 2) */ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
register size_t i = (l + r) >> 1; size_t i = (l + r) >> 1;
const char *iname = iter->types[i]->name; const char *iname = iter->types[i]->name;
if (iname) { if (iname) {
register int compare = strcmp(name, iname); int compare = strcmp(name, iname);
if (compare == 0) { if (compare == 0) {
return iter->types[i]; return iter->types[i];
} else if (compare < 0) { } else if (compare < 0) {
if (i) { if (i) {
...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start, ...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start,
Search for a swig_type_info structure for either a mangled name or a human readable name. Search for a swig_type_info structure for either a mangled name or a human readable name.
It first searches the mangled names of the types, which is a O(log #types) It first searches the mangled names of the types, which is a O(log #types)
If a type is not found it then searches the human readable names, which is O(#types). If a type is not found it then searches the human readable names, which is O(#types).
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_TypeQueryModule(swig_module_info *start, SWIG_TypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
/* STEP 1: Search the name field using binary search */ /* STEP 1: Search the name field using binary search */
swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start,
of the str field (the human readable name) */ of the str field (the human readable name) */
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
register size_t i = 0; size_t i = 0;
for (; i < iter->size; ++i) { for (; i < iter->size; ++i) {
if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
return iter->types[i]; return iter->types[i];
...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start,
iter = iter->next; iter = iter->next;
} while (iter != end); } while (iter != end);
} }
/* neither found a match */ /* neither found a match */
return 0; return 0;
} }
/* /*
Pack binary data into a string Pack binary data into a string
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
SWIG_PackData(char *c, void *ptr, size_t sz) { SWIG_PackData(char *c, void *ptr, size_t sz) {
static const char hex[17] = "0123456789abcdef"; static const char hex[17] = "0123456789abcdef";
register const unsigned char *u = (unsigned char *) ptr; const unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register unsigned char uu = *u; unsigned char uu = *u;
*(c++) = hex[(uu & 0xf0) >> 4]; *(c++) = hex[(uu & 0xf0) >> 4];
*(c++) = hex[uu & 0xf]; *(c++) = hex[uu & 0xf];
} }
return c; return c;
} }
/* /*
Unpack binary data from a string Unpack binary data from a string
*/ */
SWIGRUNTIME const char * SWIGRUNTIME const char *
SWIG_UnpackData(const char *c, void *ptr, size_t sz) { SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
register unsigned char *u = (unsigned char *) ptr; unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register char d = *(c++); char d = *(c++);
register unsigned char uu; unsigned char uu;
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu = ((d - '0') << 4); uu = ((d - '0') << 4);
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu = ((d - ('a'-10)) << 4); uu = ((d - ('a'-10)) << 4);
else else
return (char *) 0; return (char *) 0;
d = *(c++); d = *(c++);
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu |= (d - '0'); uu |= (d - '0');
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu |= (d - ('a'-10)); uu |= (d - ('a'-10));
else else
return (char *) 0; return (char *) 0;
*u = uu; *u = uu;
} }
return c; return c;
} }
/* /*
Pack 'void *' into a string buffer. Pack 'void *' into a string buffer.
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { ...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
#endif #endif
/* Errors in SWIG */ /* Errors in SWIG */
#define SWIG_UnknownError -1 #define SWIG_UnknownError -1
#define SWIG_IOError -2 #define SWIG_IOError -2
#define SWIG_RuntimeError -3 #define SWIG_RuntimeError -3
#define SWIG_IndexError -4 #define SWIG_IndexError -4
#define SWIG_TypeError -5 #define SWIG_TypeError -5
#define SWIG_DivisionByZero -6 #define SWIG_DivisionByZero -6
#define SWIG_OverflowError -7 #define SWIG_OverflowError -7
#define SWIG_SyntaxError -8 #define SWIG_SyntaxError -8
#define SWIG_ValueError -9 #define SWIG_ValueError -9
#define SWIG_SystemError -10 #define SWIG_SystemError -10
#define SWIG_AttributeError -11 #define SWIG_AttributeError -11
#define SWIG_MemoryError -12 #define SWIG_MemoryError -12
#define SWIG_NullReferenceError -13 #define SWIG_NullReferenceError -13
...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
} }
if (!PyTuple_Check(args)) { if (!PyTuple_Check(args)) {
if (min <= 1 && max >= 1) { if (min <= 1 && max >= 1) {
register int i; int i;
objs[0] = args; objs[0] = args;
for (i = 1; i < max; ++i) { for (i = 1; i < max; ++i) {
objs[i] = 0; objs[i] = 0;
...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
return 0; return 0;
} else { } else {
register Py_ssize_t l = PyTuple_GET_SIZE(args); Py_ssize_t l = PyTuple_GET_SIZE(args);
if (l < min) { if (l < min) {
PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
name, (min == max ? "" : "at least "), (int)min, (int)l); name, (min == max ? "" : "at least "), (int)min, (int)l);
...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
name, (min == max ? "" : "at most "), (int)max, (int)l); name, (min == max ? "" : "at most "), (int)max, (int)l);
return 0; return 0;
} else { } else {
register int i; int i;
for (i = 0; i < l; ++i) { for (i = 0; i < l; ++i) {
objs[i] = PyTuple_GET_ITEM(args, i); objs[i] = PyTuple_GET_ITEM(args, i);
} }
...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args) ...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args)
} }
SWIGRUNTIME int SWIGRUNTIME int
SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags))
{
char *str;
#ifdef METH_NOARGS
PyObject *repr = SwigPyObject_repr(v);
#else
PyObject *repr = SwigPyObject_repr(v, NULL);
#endif
if (repr) {
str = SWIG_Python_str_AsChar(repr);
fputs(str, fp);
SWIG_Python_str_DelForPy3(str);
Py_DECREF(repr);
return 0;
} else {
return 1;
}
}
SWIGRUNTIME PyObject *
SwigPyObject_str(SwigPyObject *v)
{
char result[SWIG_BUFFER_SIZE];
return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ?
SWIG_Python_str_FromChar(result) : 0;
}
SWIGRUNTIME int
SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
{ {
void *i = v->ptr; void *i = v->ptr;
...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) {
sizeof(SwigPyObject), /* tp_basicsize */ sizeof(SwigPyObject), /* tp_basicsize */
0, /* tp_itemsize */ 0, /* tp_itemsize */
(destructor)SwigPyObject_dealloc, /* tp_dealloc */ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
(printfunc)SwigPyObject_print, /* tp_print */ 0, /* tp_print */
#if PY_VERSION_HEX < 0x02020000 #if PY_VERSION_HEX < 0x02020000
(getattrfunc)SwigPyObject_getattr, /* tp_getattr */ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
#else #else
...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) {
0, /* tp_as_mapping */ 0, /* tp_as_mapping */
(hashfunc)0, /* tp_hash */ (hashfunc)0, /* tp_hash */
(ternaryfunc)0, /* tp_call */ (ternaryfunc)0, /* tp_call */
(reprfunc)SwigPyObject_str, /* tp_str */ 0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */ PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */ 0, /* tp_setattro */
0, /* tp_as_buffer */ 0, /* tp_as_buffer */
...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int ...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int
SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
int res; int res;
SwigPyObject *sobj; SwigPyObject *sobj;
int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
if (!obj) if (!obj)
return SWIG_ERROR; return SWIG_ERROR;
if (obj == Py_None) { if (obj == Py_None && !implicit_conv) {
if (ptr) if (ptr)
*ptr = 0; *ptr = 0;
return SWIG_OK; return SWIG_OK;
...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
res = SWIG_OK; res = SWIG_OK;
} else { } else {
if (flags & SWIG_POINTER_IMPLICIT_CONV) { if (implicit_conv) {
SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
if (data && !data->implicitconv) { if (data && !data->implicitconv) {
PyObject *klass = data->klass; PyObject *klass = data->klass;
...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
} }
} }
if (!SWIG_IsOK(res) && obj == Py_None) {
if (ptr)
*ptr = 0;
if (PyErr_Occurred())
PyErr_Clear();
res = SWIG_OK;
}
} }
return res; return res;
} }
...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) ...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
} }
} else { } else {
#if PY_VERSION_HEX >= 0x03000000 #if PY_VERSION_HEX >= 0x03000000
inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); inst = ((PyTypeObject*) data->newargs)->tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
if (inst) { if (inst) {
PyObject_SetAttr(inst, SWIG_This(), swig_this); PyObject_SetAttr(inst, SWIG_This(), swig_this);
Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
PyObject *descr; PyObject *descr;
PyObject *encoded_name; PyObject *encoded_name;
descrsetfunc f; descrsetfunc f;
int res; int res = -1;
# ifdef Py_USING_UNICODE # ifdef Py_USING_UNICODE
if (PyString_Check(name)) { if (PyString_Check(name)) {
...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
goto done; goto done;
} }
res = -1;
descr = _PyType_Lookup(tp, name); descr = _PyType_Lookup(tp, name);
f = NULL; f = NULL;
if (descr != NULL) if (descr != NULL)
...@@ -2980,7 +2965,7 @@ static swig_module_info swig_module = {swig_types, 5, 0, 0, 0, 0}; ...@@ -2980,7 +2965,7 @@ static swig_module_info swig_module = {swig_types, 5, 0, 0, 0, 0};
#endif #endif
#define SWIG_name "_pyUExceptions" #define SWIG_name "_pyUExceptions"
#define SWIGVERSION 0x020010 #define SWIGVERSION 0x030000
#define SWIG_VERSION SWIGVERSION #define SWIG_VERSION SWIGVERSION
...@@ -3650,18 +3635,18 @@ static swig_const_info swig_const_table[] = { ...@@ -3650,18 +3635,18 @@ static swig_const_info swig_const_table[] = {
#endif #endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* Type initialization: * Type initialization:
* This problem is tough by the requirement that no dynamic * This problem is tough by the requirement that no dynamic
* memory is used. Also, since swig_type_info structures store pointers to * memory is used. Also, since swig_type_info structures store pointers to
* swig_cast_info structures and swig_cast_info structures store pointers back * swig_cast_info structures and swig_cast_info structures store pointers back
* to swig_type_info structures, we need some lookup code at initialization. * to swig_type_info structures, we need some lookup code at initialization.
* The idea is that swig generates all the structures that are needed. * The idea is that swig generates all the structures that are needed.
* The runtime then collects these partially filled structures. * The runtime then collects these partially filled structures.
* The SWIG_InitializeModule function takes these initial arrays out of * The SWIG_InitializeModule function takes these initial arrays out of
* swig_module, and does all the lookup, filling in the swig_module.types * swig_module, and does all the lookup, filling in the swig_module.types
* array with the correct data and linking the correct swig_cast_info * array with the correct data and linking the correct swig_cast_info
* structures together. * structures together.
* *
* The generated swig_type_info structures are assigned staticly to an initial * The generated swig_type_info structures are assigned statically to an initial
* array. We just loop through that array, and handle each type individually. * array. We just loop through that array, and handle each type individually.
* First we lookup if this type has been already loaded, and if so, use the * First we lookup if this type has been already loaded, and if so, use the
* loaded structure instead of the generated one. Then we have to fill in the * loaded structure instead of the generated one. Then we have to fill in the
...@@ -3671,17 +3656,17 @@ static swig_const_info swig_const_table[] = { ...@@ -3671,17 +3656,17 @@ static swig_const_info swig_const_table[] = {
* a column is one of the swig_cast_info structures for that type. * a column is one of the swig_cast_info structures for that type.
* The cast_initial array is actually an array of arrays, because each row has * The cast_initial array is actually an array of arrays, because each row has
* a variable number of columns. So to actually build the cast linked list, * a variable number of columns. So to actually build the cast linked list,
* we find the array of casts associated with the type, and loop through it * we find the array of casts associated with the type, and loop through it
* adding the casts to the list. The one last trick we need to do is making * adding the casts to the list. The one last trick we need to do is making
* sure the type pointer in the swig_cast_info struct is correct. * sure the type pointer in the swig_cast_info struct is correct.
* *
* First off, we lookup the cast->type name to see if it is already loaded. * First off, we lookup the cast->type name to see if it is already loaded.
* There are three cases to handle: * There are three cases to handle:
* 1) If the cast->type has already been loaded AND the type we are adding * 1) If the cast->type has already been loaded AND the type we are adding
* casting info to has not been loaded (it is in this module), THEN we * casting info to has not been loaded (it is in this module), THEN we
* replace the cast->type pointer with the type pointer that has already * replace the cast->type pointer with the type pointer that has already
* been loaded. * been loaded.
* 2) If BOTH types (the one we are adding casting info to, and the * 2) If BOTH types (the one we are adding casting info to, and the
* cast->type) are loaded, THEN the cast info has already been loaded by * cast->type) are loaded, THEN the cast info has already been loaded by
* the previous module so we just ignore it. * the previous module so we just ignore it.
* 3) Finally, if cast->type has not already been loaded, then we add that * 3) Finally, if cast->type has not already been loaded, then we add that
...@@ -3744,7 +3729,7 @@ SWIG_InitializeModule(void *clientdata) { ...@@ -3744,7 +3729,7 @@ SWIG_InitializeModule(void *clientdata) {
module_head->next = &swig_module; module_head->next = &swig_module;
} }
/* When multiple interpeters are used, a module could have already been initialized in /* When multiple interpreters are used, a module could have already been initialized in
a different interpreter, but not yet have a pointer in this interpreter. a different interpreter, but not yet have a pointer in this interpreter.
In this case, we do not want to continue adding types... everything should be In this case, we do not want to continue adding types... everything should be
set up already */ set up already */
...@@ -3991,7 +3976,7 @@ extern "C" { ...@@ -3991,7 +3976,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == NULL && !PyErr_Occurred()) { if (res == NULL && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
...@@ -4008,7 +3993,7 @@ extern "C" { ...@@ -4008,7 +3993,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == 1 && !PyErr_Occurred()) { if (res == 1 && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
......
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org). * This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.10 * Version 3.0.0
* *
* This file is not intended to be easily readable and contains a number of * This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make * coding conventions designed to improve portability and efficiency. Do not make
* changes to this file unless you know what you are doing--modify the SWIG * changes to this file unless you know what you are doing--modify the SWIG
* interface file instead. * interface file instead.
* ----------------------------------------------------------------------------- */ * ----------------------------------------------------------------------------- */
#define SWIGPYTHON #define SWIGPYTHON
...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() { ...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() {
#ifndef SWIGUNUSED #ifndef SWIGUNUSED
# if defined(__GNUC__) # if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
# elif defined(__ICC) # elif defined(__ICC)
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
#endif #endif
#ifndef SWIG_MSC_UNSUPPRESS_4505 #ifndef SWIG_MSC_UNSUPPRESS_4505
# if defined(_MSC_VER) # if defined(_MSC_VER)
# pragma warning(disable : 4505) /* unreferenced local function has been removed */ # pragma warning(disable : 4505) /* unreferenced local function has been removed */
# endif # endif
#endif #endif
#ifndef SWIGUNUSEDPARM #ifndef SWIGUNUSEDPARM
# ifdef __cplusplus # ifdef __cplusplus
# define SWIGUNUSEDPARM(p) # define SWIGUNUSEDPARM(p)
# else # else
# define SWIGUNUSEDPARM(p) p SWIGUNUSED # define SWIGUNUSEDPARM(p) p SWIGUNUSED
# endif # endif
#endif #endif
...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() { ...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() {
# define SWIGSTDCALL __stdcall # define SWIGSTDCALL __stdcall
# else # else
# define SWIGSTDCALL # define SWIGSTDCALL
# endif # endif
#endif #endif
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() { ...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() {
/* Python.h has to appear first */ #if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
#include <Python.h> /* Use debug wrappers with the Python release dll */
# undef _DEBUG
# include <Python.h>
# define _DEBUG
#else
# include <Python.h>
#endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* swigrun.swg * swigrun.swg
...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() { ...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() {
You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
creating a static or dynamic library from the SWIG runtime code. creating a static or dynamic library from the SWIG runtime code.
In 99.9% of the cases, SWIG just needs to declare them as 'static'. In 99.9% of the cases, SWIG just needs to declare them as 'static'.
But only do this if strictly necessary, ie, if you have problems But only do this if strictly necessary, ie, if you have problems
with your compiler or suchlike. with your compiler or suchlike.
*/ */
...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() { ...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() {
#define SWIG_POINTER_OWN 0x1 #define SWIG_POINTER_OWN 0x1
/* /*
Flags/methods for returning states. Flags/methods for returning states.
The SWIG conversion methods, as ConvertPtr, return an integer The SWIG conversion methods, as ConvertPtr, return an integer
that tells if the conversion was successful or not. And if not, that tells if the conversion was successful or not. And if not,
an error code can be returned (see swigerrors.swg for the codes). an error code can be returned (see swigerrors.swg for the codes).
Use the following macros/flags to set or process the returning Use the following macros/flags to set or process the returning
states. states.
In old versions of SWIG, code such as the following was usually written: In old versions of SWIG, code such as the following was usually written:
if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() { ...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() {
} else { } else {
// fail code // fail code
} }
I.e., now SWIG_ConvertPtr can return new objects and you can I.e., now SWIG_ConvertPtr can return new objects and you can
identify the case and take care of the deallocation. Of course that identify the case and take care of the deallocation. Of course that
also requires SWIG_ConvertPtr to return new result values, such as also requires SWIG_ConvertPtr to return new result values, such as
int SWIG_ConvertPtr(obj, ptr,...) { int SWIG_ConvertPtr(obj, ptr,...) {
if (<obj is ok>) { if (<obj is ok>) {
if (<need new object>) { if (<need new object>) {
*ptr = <ptr to new allocated object>; *ptr = <ptr to new allocated object>;
return SWIG_NEWOBJ; return SWIG_NEWOBJ;
} else { } else {
*ptr = <ptr to old object>; *ptr = <ptr to old object>;
return SWIG_OLDOBJ; return SWIG_OLDOBJ;
} }
} else { } else {
return SWIG_BADOBJ; return SWIG_BADOBJ;
} }
} }
Of course, returning the plain '0(success)/-1(fail)' still works, but you can be Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() { ...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() {
int fooi(int); int fooi(int);
and you call and you call
food(1) // cast rank '1' (1 -> 1.0) food(1) // cast rank '1' (1 -> 1.0)
fooi(1) // cast rank '0' fooi(1) // cast rank '0'
just use the SWIG_AddCast()/SWIG_CheckState() just use the SWIG_AddCast()/SWIG_CheckState()
*/ */
#define SWIG_OK (0) #define SWIG_OK (0)
#define SWIG_ERROR (-1) #define SWIG_ERROR (-1)
#define SWIG_IsOK(r) (r >= 0) #define SWIG_IsOK(r) (r >= 0)
#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
/* The CastRankLimit says how many bits are used for the cast rank */ /* The CastRankLimit says how many bits are used for the cast rank */
#define SWIG_CASTRANKLIMIT (1 << 8) #define SWIG_CASTRANKLIMIT (1 << 8)
...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() { ...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() {
# endif # endif
# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
SWIGINTERNINLINE int SWIG_AddCast(int r) { SWIGINTERNINLINE int SWIG_AddCast(int r) {
return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
} }
SWIGINTERNINLINE int SWIG_CheckState(int r) { SWIGINTERNINLINE int SWIG_CheckState(int r) {
return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
} }
#else /* no cast-rank mode */ #else /* no cast-rank mode */
# define SWIG_AddCast(r) (r) # define SWIG_AddCast(r) (r)
...@@ -363,7 +369,7 @@ typedef struct swig_module_info { ...@@ -363,7 +369,7 @@ typedef struct swig_module_info {
void *clientdata; /* Language specific module data */ void *clientdata; /* Language specific module data */
} swig_module_info; } swig_module_info;
/* /*
Compare two type names skipping the space characters, therefore Compare two type names skipping the space characters, therefore
"char*" == "char *" and "Class<int>" == "Class<int >", etc. "char*" == "char *" and "Class<int>" == "Class<int >", etc.
...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) { ...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
return 0; return 0;
} }
/* /*
Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
*/ */
SWIGRUNTIME swig_cast_info * SWIGRUNTIME swig_cast_info *
...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { ...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
} }
/* /*
Dynamic pointer casting. Down an inheritance hierarchy Dynamic pointer casting. Down an inheritance hierarchy
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) { ...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) {
return type->name; return type->name;
} }
/* /*
Set the clientdata field for a type Set the clientdata field for a type
*/ */
SWIGRUNTIME void SWIGRUNTIME void
...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { ...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
swig_cast_info *cast = ti->cast; swig_cast_info *cast = ti->cast;
/* if (ti->clientdata == clientdata) return; */ /* if (ti->clientdata == clientdata) return; */
ti->clientdata = clientdata; ti->clientdata = clientdata;
while (cast) { while (cast) {
if (!cast->converter) { if (!cast->converter) {
swig_type_info *tc = cast->type; swig_type_info *tc = cast->type;
if (!tc->clientdata) { if (!tc->clientdata) {
SWIG_TypeClientData(tc, clientdata); SWIG_TypeClientData(tc, clientdata);
} }
} }
cast = cast->next; cast = cast->next;
} }
} }
...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { ...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
SWIG_TypeClientData(ti, clientdata); SWIG_TypeClientData(ti, clientdata);
ti->owndata = 1; ti->owndata = 1;
} }
/* /*
Search for a swig_type_info structure only by mangled name Search for a swig_type_info structure only by mangled name
Search is a O(log #types) Search is a O(log #types)
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_MangledTypeQueryModule(swig_module_info *start, SWIG_MangledTypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
if (iter->size) { if (iter->size) {
register size_t l = 0; size_t l = 0;
register size_t r = iter->size - 1; size_t r = iter->size - 1;
do { do {
/* since l+r >= 0, we can (>> 1) instead (/ 2) */ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
register size_t i = (l + r) >> 1; size_t i = (l + r) >> 1;
const char *iname = iter->types[i]->name; const char *iname = iter->types[i]->name;
if (iname) { if (iname) {
register int compare = strcmp(name, iname); int compare = strcmp(name, iname);
if (compare == 0) { if (compare == 0) {
return iter->types[i]; return iter->types[i];
} else if (compare < 0) { } else if (compare < 0) {
if (i) { if (i) {
...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start, ...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start,
Search for a swig_type_info structure for either a mangled name or a human readable name. Search for a swig_type_info structure for either a mangled name or a human readable name.
It first searches the mangled names of the types, which is a O(log #types) It first searches the mangled names of the types, which is a O(log #types)
If a type is not found it then searches the human readable names, which is O(#types). If a type is not found it then searches the human readable names, which is O(#types).
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_TypeQueryModule(swig_module_info *start, SWIG_TypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
/* STEP 1: Search the name field using binary search */ /* STEP 1: Search the name field using binary search */
swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start,
of the str field (the human readable name) */ of the str field (the human readable name) */
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
register size_t i = 0; size_t i = 0;
for (; i < iter->size; ++i) { for (; i < iter->size; ++i) {
if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
return iter->types[i]; return iter->types[i];
...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start,
iter = iter->next; iter = iter->next;
} while (iter != end); } while (iter != end);
} }
/* neither found a match */ /* neither found a match */
return 0; return 0;
} }
/* /*
Pack binary data into a string Pack binary data into a string
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
SWIG_PackData(char *c, void *ptr, size_t sz) { SWIG_PackData(char *c, void *ptr, size_t sz) {
static const char hex[17] = "0123456789abcdef"; static const char hex[17] = "0123456789abcdef";
register const unsigned char *u = (unsigned char *) ptr; const unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register unsigned char uu = *u; unsigned char uu = *u;
*(c++) = hex[(uu & 0xf0) >> 4]; *(c++) = hex[(uu & 0xf0) >> 4];
*(c++) = hex[uu & 0xf]; *(c++) = hex[uu & 0xf];
} }
return c; return c;
} }
/* /*
Unpack binary data from a string Unpack binary data from a string
*/ */
SWIGRUNTIME const char * SWIGRUNTIME const char *
SWIG_UnpackData(const char *c, void *ptr, size_t sz) { SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
register unsigned char *u = (unsigned char *) ptr; unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register char d = *(c++); char d = *(c++);
register unsigned char uu; unsigned char uu;
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu = ((d - '0') << 4); uu = ((d - '0') << 4);
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu = ((d - ('a'-10)) << 4); uu = ((d - ('a'-10)) << 4);
else else
return (char *) 0; return (char *) 0;
d = *(c++); d = *(c++);
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu |= (d - '0'); uu |= (d - '0');
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu |= (d - ('a'-10)); uu |= (d - ('a'-10));
else else
return (char *) 0; return (char *) 0;
*u = uu; *u = uu;
} }
return c; return c;
} }
/* /*
Pack 'void *' into a string buffer. Pack 'void *' into a string buffer.
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { ...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
#endif #endif
/* Errors in SWIG */ /* Errors in SWIG */
#define SWIG_UnknownError -1 #define SWIG_UnknownError -1
#define SWIG_IOError -2 #define SWIG_IOError -2
#define SWIG_RuntimeError -3 #define SWIG_RuntimeError -3
#define SWIG_IndexError -4 #define SWIG_IndexError -4
#define SWIG_TypeError -5 #define SWIG_TypeError -5
#define SWIG_DivisionByZero -6 #define SWIG_DivisionByZero -6
#define SWIG_OverflowError -7 #define SWIG_OverflowError -7
#define SWIG_SyntaxError -8 #define SWIG_SyntaxError -8
#define SWIG_ValueError -9 #define SWIG_ValueError -9
#define SWIG_SystemError -10 #define SWIG_SystemError -10
#define SWIG_AttributeError -11 #define SWIG_AttributeError -11
#define SWIG_MemoryError -12 #define SWIG_MemoryError -12
#define SWIG_NullReferenceError -13 #define SWIG_NullReferenceError -13
...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
} }
if (!PyTuple_Check(args)) { if (!PyTuple_Check(args)) {
if (min <= 1 && max >= 1) { if (min <= 1 && max >= 1) {
register int i; int i;
objs[0] = args; objs[0] = args;
for (i = 1; i < max; ++i) { for (i = 1; i < max; ++i) {
objs[i] = 0; objs[i] = 0;
...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
return 0; return 0;
} else { } else {
register Py_ssize_t l = PyTuple_GET_SIZE(args); Py_ssize_t l = PyTuple_GET_SIZE(args);
if (l < min) { if (l < min) {
PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
name, (min == max ? "" : "at least "), (int)min, (int)l); name, (min == max ? "" : "at least "), (int)min, (int)l);
...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
name, (min == max ? "" : "at most "), (int)max, (int)l); name, (min == max ? "" : "at most "), (int)max, (int)l);
return 0; return 0;
} else { } else {
register int i; int i;
for (i = 0; i < l; ++i) { for (i = 0; i < l; ++i) {
objs[i] = PyTuple_GET_ITEM(args, i); objs[i] = PyTuple_GET_ITEM(args, i);
} }
...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args) ...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args)
} }
SWIGRUNTIME int SWIGRUNTIME int
SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags))
{
char *str;
#ifdef METH_NOARGS
PyObject *repr = SwigPyObject_repr(v);
#else
PyObject *repr = SwigPyObject_repr(v, NULL);
#endif
if (repr) {
str = SWIG_Python_str_AsChar(repr);
fputs(str, fp);
SWIG_Python_str_DelForPy3(str);
Py_DECREF(repr);
return 0;
} else {
return 1;
}
}
SWIGRUNTIME PyObject *
SwigPyObject_str(SwigPyObject *v)
{
char result[SWIG_BUFFER_SIZE];
return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ?
SWIG_Python_str_FromChar(result) : 0;
}
SWIGRUNTIME int
SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
{ {
void *i = v->ptr; void *i = v->ptr;
...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) {
sizeof(SwigPyObject), /* tp_basicsize */ sizeof(SwigPyObject), /* tp_basicsize */
0, /* tp_itemsize */ 0, /* tp_itemsize */
(destructor)SwigPyObject_dealloc, /* tp_dealloc */ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
(printfunc)SwigPyObject_print, /* tp_print */ 0, /* tp_print */
#if PY_VERSION_HEX < 0x02020000 #if PY_VERSION_HEX < 0x02020000
(getattrfunc)SwigPyObject_getattr, /* tp_getattr */ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
#else #else
...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) {
0, /* tp_as_mapping */ 0, /* tp_as_mapping */
(hashfunc)0, /* tp_hash */ (hashfunc)0, /* tp_hash */
(ternaryfunc)0, /* tp_call */ (ternaryfunc)0, /* tp_call */
(reprfunc)SwigPyObject_str, /* tp_str */ 0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */ PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */ 0, /* tp_setattro */
0, /* tp_as_buffer */ 0, /* tp_as_buffer */
...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int ...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int
SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
int res; int res;
SwigPyObject *sobj; SwigPyObject *sobj;
int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
if (!obj) if (!obj)
return SWIG_ERROR; return SWIG_ERROR;
if (obj == Py_None) { if (obj == Py_None && !implicit_conv) {
if (ptr) if (ptr)
*ptr = 0; *ptr = 0;
return SWIG_OK; return SWIG_OK;
...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
res = SWIG_OK; res = SWIG_OK;
} else { } else {
if (flags & SWIG_POINTER_IMPLICIT_CONV) { if (implicit_conv) {
SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
if (data && !data->implicitconv) { if (data && !data->implicitconv) {
PyObject *klass = data->klass; PyObject *klass = data->klass;
...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
} }
} }
if (!SWIG_IsOK(res) && obj == Py_None) {
if (ptr)
*ptr = 0;
if (PyErr_Occurred())
PyErr_Clear();
res = SWIG_OK;
}
} }
return res; return res;
} }
...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) ...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
} }
} else { } else {
#if PY_VERSION_HEX >= 0x03000000 #if PY_VERSION_HEX >= 0x03000000
inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); inst = ((PyTypeObject*) data->newargs)->tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
if (inst) { if (inst) {
PyObject_SetAttr(inst, SWIG_This(), swig_this); PyObject_SetAttr(inst, SWIG_This(), swig_this);
Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
PyObject *descr; PyObject *descr;
PyObject *encoded_name; PyObject *encoded_name;
descrsetfunc f; descrsetfunc f;
int res; int res = -1;
# ifdef Py_USING_UNICODE # ifdef Py_USING_UNICODE
if (PyString_Check(name)) { if (PyString_Check(name)) {
...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
goto done; goto done;
} }
res = -1;
descr = _PyType_Lookup(tp, name); descr = _PyType_Lookup(tp, name);
f = NULL; f = NULL;
if (descr != NULL) if (descr != NULL)
...@@ -2982,7 +2967,7 @@ static swig_module_info swig_module = {swig_types, 7, 0, 0, 0, 0}; ...@@ -2982,7 +2967,7 @@ static swig_module_info swig_module = {swig_types, 7, 0, 0, 0, 0};
#endif #endif
#define SWIG_name "_pyUniSet" #define SWIG_name "_pyUniSet"
#define SWIGVERSION 0x020010 #define SWIGVERSION 0x030000
#define SWIG_VERSION SWIGVERSION #define SWIG_VERSION SWIGVERSION
...@@ -3735,7 +3720,7 @@ SWIGINTERN PyObject *_wrap_Params_argv_set(PyObject *SWIGUNUSEDPARM(self), PyObj ...@@ -3735,7 +3720,7 @@ SWIGINTERN PyObject *_wrap_Params_argv_set(PyObject *SWIGUNUSEDPARM(self), PyObj
{ {
if (arg2) { if (arg2) {
size_t ii = 0; size_t ii = 0;
for (; ii < (size_t)UTypes::Params::max; ++ii) arg1->argv[ii] = arg2[ii]; for (; ii < (size_t)UTypes::Params::max; ++ii) *(char * *)&arg1->argv[ii] = *((char * *)arg2 + ii);
} else { } else {
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""argv""' of type '""char *[UTypes::Params::max]""'"); SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""argv""' of type '""char *[UTypes::Params::max]""'");
} }
...@@ -4308,18 +4293,18 @@ static swig_const_info swig_const_table[] = { ...@@ -4308,18 +4293,18 @@ static swig_const_info swig_const_table[] = {
#endif #endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* Type initialization: * Type initialization:
* This problem is tough by the requirement that no dynamic * This problem is tough by the requirement that no dynamic
* memory is used. Also, since swig_type_info structures store pointers to * memory is used. Also, since swig_type_info structures store pointers to
* swig_cast_info structures and swig_cast_info structures store pointers back * swig_cast_info structures and swig_cast_info structures store pointers back
* to swig_type_info structures, we need some lookup code at initialization. * to swig_type_info structures, we need some lookup code at initialization.
* The idea is that swig generates all the structures that are needed. * The idea is that swig generates all the structures that are needed.
* The runtime then collects these partially filled structures. * The runtime then collects these partially filled structures.
* The SWIG_InitializeModule function takes these initial arrays out of * The SWIG_InitializeModule function takes these initial arrays out of
* swig_module, and does all the lookup, filling in the swig_module.types * swig_module, and does all the lookup, filling in the swig_module.types
* array with the correct data and linking the correct swig_cast_info * array with the correct data and linking the correct swig_cast_info
* structures together. * structures together.
* *
* The generated swig_type_info structures are assigned staticly to an initial * The generated swig_type_info structures are assigned statically to an initial
* array. We just loop through that array, and handle each type individually. * array. We just loop through that array, and handle each type individually.
* First we lookup if this type has been already loaded, and if so, use the * First we lookup if this type has been already loaded, and if so, use the
* loaded structure instead of the generated one. Then we have to fill in the * loaded structure instead of the generated one. Then we have to fill in the
...@@ -4329,17 +4314,17 @@ static swig_const_info swig_const_table[] = { ...@@ -4329,17 +4314,17 @@ static swig_const_info swig_const_table[] = {
* a column is one of the swig_cast_info structures for that type. * a column is one of the swig_cast_info structures for that type.
* The cast_initial array is actually an array of arrays, because each row has * The cast_initial array is actually an array of arrays, because each row has
* a variable number of columns. So to actually build the cast linked list, * a variable number of columns. So to actually build the cast linked list,
* we find the array of casts associated with the type, and loop through it * we find the array of casts associated with the type, and loop through it
* adding the casts to the list. The one last trick we need to do is making * adding the casts to the list. The one last trick we need to do is making
* sure the type pointer in the swig_cast_info struct is correct. * sure the type pointer in the swig_cast_info struct is correct.
* *
* First off, we lookup the cast->type name to see if it is already loaded. * First off, we lookup the cast->type name to see if it is already loaded.
* There are three cases to handle: * There are three cases to handle:
* 1) If the cast->type has already been loaded AND the type we are adding * 1) If the cast->type has already been loaded AND the type we are adding
* casting info to has not been loaded (it is in this module), THEN we * casting info to has not been loaded (it is in this module), THEN we
* replace the cast->type pointer with the type pointer that has already * replace the cast->type pointer with the type pointer that has already
* been loaded. * been loaded.
* 2) If BOTH types (the one we are adding casting info to, and the * 2) If BOTH types (the one we are adding casting info to, and the
* cast->type) are loaded, THEN the cast info has already been loaded by * cast->type) are loaded, THEN the cast info has already been loaded by
* the previous module so we just ignore it. * the previous module so we just ignore it.
* 3) Finally, if cast->type has not already been loaded, then we add that * 3) Finally, if cast->type has not already been loaded, then we add that
...@@ -4402,7 +4387,7 @@ SWIG_InitializeModule(void *clientdata) { ...@@ -4402,7 +4387,7 @@ SWIG_InitializeModule(void *clientdata) {
module_head->next = &swig_module; module_head->next = &swig_module;
} }
/* When multiple interpeters are used, a module could have already been initialized in /* When multiple interpreters are used, a module could have already been initialized in
a different interpreter, but not yet have a pointer in this interpreter. a different interpreter, but not yet have a pointer in this interpreter.
In this case, we do not want to continue adding types... everything should be In this case, we do not want to continue adding types... everything should be
set up already */ set up already */
...@@ -4649,7 +4634,7 @@ extern "C" { ...@@ -4649,7 +4634,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == NULL && !PyErr_Occurred()) { if (res == NULL && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
...@@ -4666,7 +4651,7 @@ extern "C" { ...@@ -4666,7 +4651,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == 1 && !PyErr_Occurred()) { if (res == 1 && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
......
/* ---------------------------------------------------------------------------- /* ----------------------------------------------------------------------------
* This file was automatically generated by SWIG (http://www.swig.org). * This file was automatically generated by SWIG (http://www.swig.org).
* Version 2.0.10 * Version 3.0.0
* *
* This file is not intended to be easily readable and contains a number of * This file is not intended to be easily readable and contains a number of
* coding conventions designed to improve portability and efficiency. Do not make * coding conventions designed to improve portability and efficiency. Do not make
* changes to this file unless you know what you are doing--modify the SWIG * changes to this file unless you know what you are doing--modify the SWIG
* interface file instead. * interface file instead.
* ----------------------------------------------------------------------------- */ * ----------------------------------------------------------------------------- */
#define SWIGPYTHON #define SWIGPYTHON
...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() { ...@@ -67,28 +67,28 @@ template <typename T> T SwigValueInit() {
#ifndef SWIGUNUSED #ifndef SWIGUNUSED
# if defined(__GNUC__) # if defined(__GNUC__)
# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
# elif defined(__ICC) # elif defined(__ICC)
# define SWIGUNUSED __attribute__ ((__unused__)) # define SWIGUNUSED __attribute__ ((__unused__))
# else # else
# define SWIGUNUSED # define SWIGUNUSED
# endif # endif
#endif #endif
#ifndef SWIG_MSC_UNSUPPRESS_4505 #ifndef SWIG_MSC_UNSUPPRESS_4505
# if defined(_MSC_VER) # if defined(_MSC_VER)
# pragma warning(disable : 4505) /* unreferenced local function has been removed */ # pragma warning(disable : 4505) /* unreferenced local function has been removed */
# endif # endif
#endif #endif
#ifndef SWIGUNUSEDPARM #ifndef SWIGUNUSEDPARM
# ifdef __cplusplus # ifdef __cplusplus
# define SWIGUNUSEDPARM(p) # define SWIGUNUSEDPARM(p)
# else # else
# define SWIGUNUSEDPARM(p) p SWIGUNUSED # define SWIGUNUSEDPARM(p) p SWIGUNUSED
# endif # endif
#endif #endif
...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() { ...@@ -131,7 +131,7 @@ template <typename T> T SwigValueInit() {
# define SWIGSTDCALL __stdcall # define SWIGSTDCALL __stdcall
# else # else
# define SWIGSTDCALL # define SWIGSTDCALL
# endif # endif
#endif #endif
/* Deal with Microsoft's attempt at deprecating C standard runtime functions */ /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() { ...@@ -146,8 +146,14 @@ template <typename T> T SwigValueInit() {
/* Python.h has to appear first */ #if defined(_DEBUG) && defined(SWIG_PYTHON_INTERPRETER_NO_DEBUG)
#include <Python.h> /* Use debug wrappers with the Python release dll */
# undef _DEBUG
# include <Python.h>
# define _DEBUG
#else
# include <Python.h>
#endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* swigrun.swg * swigrun.swg
...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() { ...@@ -173,7 +179,7 @@ template <typename T> T SwigValueInit() {
You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
creating a static or dynamic library from the SWIG runtime code. creating a static or dynamic library from the SWIG runtime code.
In 99.9% of the cases, SWIG just needs to declare them as 'static'. In 99.9% of the cases, SWIG just needs to declare them as 'static'.
But only do this if strictly necessary, ie, if you have problems But only do this if strictly necessary, ie, if you have problems
with your compiler or suchlike. with your compiler or suchlike.
*/ */
...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() { ...@@ -199,16 +205,16 @@ template <typename T> T SwigValueInit() {
#define SWIG_POINTER_OWN 0x1 #define SWIG_POINTER_OWN 0x1
/* /*
Flags/methods for returning states. Flags/methods for returning states.
The SWIG conversion methods, as ConvertPtr, return an integer The SWIG conversion methods, as ConvertPtr, return an integer
that tells if the conversion was successful or not. And if not, that tells if the conversion was successful or not. And if not,
an error code can be returned (see swigerrors.swg for the codes). an error code can be returned (see swigerrors.swg for the codes).
Use the following macros/flags to set or process the returning Use the following macros/flags to set or process the returning
states. states.
In old versions of SWIG, code such as the following was usually written: In old versions of SWIG, code such as the following was usually written:
if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() { ...@@ -241,23 +247,23 @@ template <typename T> T SwigValueInit() {
} else { } else {
// fail code // fail code
} }
I.e., now SWIG_ConvertPtr can return new objects and you can I.e., now SWIG_ConvertPtr can return new objects and you can
identify the case and take care of the deallocation. Of course that identify the case and take care of the deallocation. Of course that
also requires SWIG_ConvertPtr to return new result values, such as also requires SWIG_ConvertPtr to return new result values, such as
int SWIG_ConvertPtr(obj, ptr,...) { int SWIG_ConvertPtr(obj, ptr,...) {
if (<obj is ok>) { if (<obj is ok>) {
if (<need new object>) { if (<need new object>) {
*ptr = <ptr to new allocated object>; *ptr = <ptr to new allocated object>;
return SWIG_NEWOBJ; return SWIG_NEWOBJ;
} else { } else {
*ptr = <ptr to old object>; *ptr = <ptr to old object>;
return SWIG_OLDOBJ; return SWIG_OLDOBJ;
} }
} else { } else {
return SWIG_BADOBJ; return SWIG_BADOBJ;
} }
} }
Of course, returning the plain '0(success)/-1(fail)' still works, but you can be Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() { ...@@ -271,17 +277,17 @@ template <typename T> T SwigValueInit() {
int fooi(int); int fooi(int);
and you call and you call
food(1) // cast rank '1' (1 -> 1.0) food(1) // cast rank '1' (1 -> 1.0)
fooi(1) // cast rank '0' fooi(1) // cast rank '0'
just use the SWIG_AddCast()/SWIG_CheckState() just use the SWIG_AddCast()/SWIG_CheckState()
*/ */
#define SWIG_OK (0) #define SWIG_OK (0)
#define SWIG_ERROR (-1) #define SWIG_ERROR (-1)
#define SWIG_IsOK(r) (r >= 0) #define SWIG_IsOK(r) (r >= 0)
#define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError) #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
/* The CastRankLimit says how many bits are used for the cast rank */ /* The CastRankLimit says how many bits are used for the cast rank */
#define SWIG_CASTRANKLIMIT (1 << 8) #define SWIG_CASTRANKLIMIT (1 << 8)
...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() { ...@@ -312,11 +318,11 @@ template <typename T> T SwigValueInit() {
# endif # endif
# define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1) # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
# define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK) # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
SWIGINTERNINLINE int SWIG_AddCast(int r) { SWIGINTERNINLINE int SWIG_AddCast(int r) {
return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r; return SWIG_IsOK(r) ? ((SWIG_CastRank(r) < SWIG_MAXCASTRANK) ? (r + 1) : SWIG_ERROR) : r;
} }
SWIGINTERNINLINE int SWIG_CheckState(int r) { SWIGINTERNINLINE int SWIG_CheckState(int r) {
return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0; return SWIG_IsOK(r) ? SWIG_CastRank(r) + 1 : 0;
} }
#else /* no cast-rank mode */ #else /* no cast-rank mode */
# define SWIG_AddCast(r) (r) # define SWIG_AddCast(r) (r)
...@@ -363,7 +369,7 @@ typedef struct swig_module_info { ...@@ -363,7 +369,7 @@ typedef struct swig_module_info {
void *clientdata; /* Language specific module data */ void *clientdata; /* Language specific module data */
} swig_module_info; } swig_module_info;
/* /*
Compare two type names skipping the space characters, therefore Compare two type names skipping the space characters, therefore
"char*" == "char *" and "Class<int>" == "Class<int >", etc. "char*" == "char *" and "Class<int>" == "Class<int >", etc.
...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) { ...@@ -436,7 +442,7 @@ SWIG_TypeCheck(const char *c, swig_type_info *ty) {
return 0; return 0;
} }
/* /*
Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison Identical to SWIG_TypeCheck, except strcmp is replaced with a pointer comparison
*/ */
SWIGRUNTIME swig_cast_info * SWIGRUNTIME swig_cast_info *
...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) { ...@@ -471,7 +477,7 @@ SWIG_TypeCast(swig_cast_info *ty, void *ptr, int *newmemory) {
return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory); return ((!ty) || (!ty->converter)) ? ptr : (*ty->converter)(ptr, newmemory);
} }
/* /*
Dynamic pointer casting. Down an inheritance hierarchy Dynamic pointer casting. Down an inheritance hierarchy
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) { ...@@ -515,7 +521,7 @@ SWIG_TypePrettyName(const swig_type_info *type) {
return type->name; return type->name;
} }
/* /*
Set the clientdata field for a type Set the clientdata field for a type
*/ */
SWIGRUNTIME void SWIGRUNTIME void
...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) { ...@@ -523,14 +529,14 @@ SWIG_TypeClientData(swig_type_info *ti, void *clientdata) {
swig_cast_info *cast = ti->cast; swig_cast_info *cast = ti->cast;
/* if (ti->clientdata == clientdata) return; */ /* if (ti->clientdata == clientdata) return; */
ti->clientdata = clientdata; ti->clientdata = clientdata;
while (cast) { while (cast) {
if (!cast->converter) { if (!cast->converter) {
swig_type_info *tc = cast->type; swig_type_info *tc = cast->type;
if (!tc->clientdata) { if (!tc->clientdata) {
SWIG_TypeClientData(tc, clientdata); SWIG_TypeClientData(tc, clientdata);
} }
} }
cast = cast->next; cast = cast->next;
} }
} }
...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) { ...@@ -539,31 +545,31 @@ SWIG_TypeNewClientData(swig_type_info *ti, void *clientdata) {
SWIG_TypeClientData(ti, clientdata); SWIG_TypeClientData(ti, clientdata);
ti->owndata = 1; ti->owndata = 1;
} }
/* /*
Search for a swig_type_info structure only by mangled name Search for a swig_type_info structure only by mangled name
Search is a O(log #types) Search is a O(log #types)
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_MangledTypeQueryModule(swig_module_info *start, SWIG_MangledTypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
if (iter->size) { if (iter->size) {
register size_t l = 0; size_t l = 0;
register size_t r = iter->size - 1; size_t r = iter->size - 1;
do { do {
/* since l+r >= 0, we can (>> 1) instead (/ 2) */ /* since l+r >= 0, we can (>> 1) instead (/ 2) */
register size_t i = (l + r) >> 1; size_t i = (l + r) >> 1;
const char *iname = iter->types[i]->name; const char *iname = iter->types[i]->name;
if (iname) { if (iname) {
register int compare = strcmp(name, iname); int compare = strcmp(name, iname);
if (compare == 0) { if (compare == 0) {
return iter->types[i]; return iter->types[i];
} else if (compare < 0) { } else if (compare < 0) {
if (i) { if (i) {
...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start, ...@@ -588,14 +594,14 @@ SWIG_MangledTypeQueryModule(swig_module_info *start,
Search for a swig_type_info structure for either a mangled name or a human readable name. Search for a swig_type_info structure for either a mangled name or a human readable name.
It first searches the mangled names of the types, which is a O(log #types) It first searches the mangled names of the types, which is a O(log #types)
If a type is not found it then searches the human readable names, which is O(#types). If a type is not found it then searches the human readable names, which is O(#types).
We start searching at module start, and finish searching when start == end. We start searching at module start, and finish searching when start == end.
Note: if start == end at the beginning of the function, we go all the way around Note: if start == end at the beginning of the function, we go all the way around
the circular list. the circular list.
*/ */
SWIGRUNTIME swig_type_info * SWIGRUNTIME swig_type_info *
SWIG_TypeQueryModule(swig_module_info *start, SWIG_TypeQueryModule(swig_module_info *start,
swig_module_info *end, swig_module_info *end,
const char *name) { const char *name) {
/* STEP 1: Search the name field using binary search */ /* STEP 1: Search the name field using binary search */
swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name); swig_type_info *ret = SWIG_MangledTypeQueryModule(start, end, name);
...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -606,7 +612,7 @@ SWIG_TypeQueryModule(swig_module_info *start,
of the str field (the human readable name) */ of the str field (the human readable name) */
swig_module_info *iter = start; swig_module_info *iter = start;
do { do {
register size_t i = 0; size_t i = 0;
for (; i < iter->size; ++i) { for (; i < iter->size; ++i) {
if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name))) if (iter->types[i]->str && (SWIG_TypeEquiv(iter->types[i]->str, name)))
return iter->types[i]; return iter->types[i];
...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start, ...@@ -614,56 +620,56 @@ SWIG_TypeQueryModule(swig_module_info *start,
iter = iter->next; iter = iter->next;
} while (iter != end); } while (iter != end);
} }
/* neither found a match */ /* neither found a match */
return 0; return 0;
} }
/* /*
Pack binary data into a string Pack binary data into a string
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
SWIG_PackData(char *c, void *ptr, size_t sz) { SWIG_PackData(char *c, void *ptr, size_t sz) {
static const char hex[17] = "0123456789abcdef"; static const char hex[17] = "0123456789abcdef";
register const unsigned char *u = (unsigned char *) ptr; const unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register unsigned char uu = *u; unsigned char uu = *u;
*(c++) = hex[(uu & 0xf0) >> 4]; *(c++) = hex[(uu & 0xf0) >> 4];
*(c++) = hex[uu & 0xf]; *(c++) = hex[uu & 0xf];
} }
return c; return c;
} }
/* /*
Unpack binary data from a string Unpack binary data from a string
*/ */
SWIGRUNTIME const char * SWIGRUNTIME const char *
SWIG_UnpackData(const char *c, void *ptr, size_t sz) { SWIG_UnpackData(const char *c, void *ptr, size_t sz) {
register unsigned char *u = (unsigned char *) ptr; unsigned char *u = (unsigned char *) ptr;
register const unsigned char *eu = u + sz; const unsigned char *eu = u + sz;
for (; u != eu; ++u) { for (; u != eu; ++u) {
register char d = *(c++); char d = *(c++);
register unsigned char uu; unsigned char uu;
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu = ((d - '0') << 4); uu = ((d - '0') << 4);
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu = ((d - ('a'-10)) << 4); uu = ((d - ('a'-10)) << 4);
else else
return (char *) 0; return (char *) 0;
d = *(c++); d = *(c++);
if ((d >= '0') && (d <= '9')) if ((d >= '0') && (d <= '9'))
uu |= (d - '0'); uu |= (d - '0');
else if ((d >= 'a') && (d <= 'f')) else if ((d >= 'a') && (d <= 'f'))
uu |= (d - ('a'-10)); uu |= (d - ('a'-10));
else else
return (char *) 0; return (char *) 0;
*u = uu; *u = uu;
} }
return c; return c;
} }
/* /*
Pack 'void *' into a string buffer. Pack 'void *' into a string buffer.
*/ */
SWIGRUNTIME char * SWIGRUNTIME char *
...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) { ...@@ -723,18 +729,18 @@ SWIG_UnpackDataName(const char *c, void *ptr, size_t sz, const char *name) {
#endif #endif
/* Errors in SWIG */ /* Errors in SWIG */
#define SWIG_UnknownError -1 #define SWIG_UnknownError -1
#define SWIG_IOError -2 #define SWIG_IOError -2
#define SWIG_RuntimeError -3 #define SWIG_RuntimeError -3
#define SWIG_IndexError -4 #define SWIG_IndexError -4
#define SWIG_TypeError -5 #define SWIG_TypeError -5
#define SWIG_DivisionByZero -6 #define SWIG_DivisionByZero -6
#define SWIG_OverflowError -7 #define SWIG_OverflowError -7
#define SWIG_SyntaxError -8 #define SWIG_SyntaxError -8
#define SWIG_ValueError -9 #define SWIG_ValueError -9
#define SWIG_SystemError -10 #define SWIG_SystemError -10
#define SWIG_AttributeError -11 #define SWIG_AttributeError -11
#define SWIG_MemoryError -12 #define SWIG_MemoryError -12
#define SWIG_NullReferenceError -13 #define SWIG_NullReferenceError -13
...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1321,7 +1327,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
} }
if (!PyTuple_Check(args)) { if (!PyTuple_Check(args)) {
if (min <= 1 && max >= 1) { if (min <= 1 && max >= 1) {
register int i; int i;
objs[0] = args; objs[0] = args;
for (i = 1; i < max; ++i) { for (i = 1; i < max; ++i) {
objs[i] = 0; objs[i] = 0;
...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1331,7 +1337,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple"); PyErr_SetString(PyExc_SystemError, "UnpackTuple() argument list is not a tuple");
return 0; return 0;
} else { } else {
register Py_ssize_t l = PyTuple_GET_SIZE(args); Py_ssize_t l = PyTuple_GET_SIZE(args);
if (l < min) { if (l < min) {
PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d", PyErr_Format(PyExc_TypeError, "%s expected %s%d arguments, got %d",
name, (min == max ? "" : "at least "), (int)min, (int)l); name, (min == max ? "" : "at least "), (int)min, (int)l);
...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi ...@@ -1341,7 +1347,7 @@ SWIG_Python_UnpackTuple(PyObject *args, const char *name, Py_ssize_t min, Py_ssi
name, (min == max ? "" : "at most "), (int)max, (int)l); name, (min == max ? "" : "at most "), (int)max, (int)l);
return 0; return 0;
} else { } else {
register int i; int i;
for (i = 0; i < l; ++i) { for (i = 0; i < l; ++i) {
objs[i] = PyTuple_GET_ITEM(args, i); objs[i] = PyTuple_GET_ITEM(args, i);
} }
...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args) ...@@ -1595,34 +1601,6 @@ SwigPyObject_repr(SwigPyObject *v, PyObject *args)
} }
SWIGRUNTIME int SWIGRUNTIME int
SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags))
{
char *str;
#ifdef METH_NOARGS
PyObject *repr = SwigPyObject_repr(v);
#else
PyObject *repr = SwigPyObject_repr(v, NULL);
#endif
if (repr) {
str = SWIG_Python_str_AsChar(repr);
fputs(str, fp);
SWIG_Python_str_DelForPy3(str);
Py_DECREF(repr);
return 0;
} else {
return 1;
}
}
SWIGRUNTIME PyObject *
SwigPyObject_str(SwigPyObject *v)
{
char result[SWIG_BUFFER_SIZE];
return SWIG_PackVoidPtr(result, v->ptr, v->ty->name, sizeof(result)) ?
SWIG_Python_str_FromChar(result) : 0;
}
SWIGRUNTIME int
SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w) SwigPyObject_compare(SwigPyObject *v, SwigPyObject *w)
{ {
void *i = v->ptr; void *i = v->ptr;
...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1907,7 +1885,7 @@ SwigPyObject_TypeOnce(void) {
sizeof(SwigPyObject), /* tp_basicsize */ sizeof(SwigPyObject), /* tp_basicsize */
0, /* tp_itemsize */ 0, /* tp_itemsize */
(destructor)SwigPyObject_dealloc, /* tp_dealloc */ (destructor)SwigPyObject_dealloc, /* tp_dealloc */
(printfunc)SwigPyObject_print, /* tp_print */ 0, /* tp_print */
#if PY_VERSION_HEX < 0x02020000 #if PY_VERSION_HEX < 0x02020000
(getattrfunc)SwigPyObject_getattr, /* tp_getattr */ (getattrfunc)SwigPyObject_getattr, /* tp_getattr */
#else #else
...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) { ...@@ -1925,7 +1903,7 @@ SwigPyObject_TypeOnce(void) {
0, /* tp_as_mapping */ 0, /* tp_as_mapping */
(hashfunc)0, /* tp_hash */ (hashfunc)0, /* tp_hash */
(ternaryfunc)0, /* tp_call */ (ternaryfunc)0, /* tp_call */
(reprfunc)SwigPyObject_str, /* tp_str */ 0, /* tp_str */
PyObject_GenericGetAttr, /* tp_getattro */ PyObject_GenericGetAttr, /* tp_getattro */
0, /* tp_setattro */ 0, /* tp_setattro */
0, /* tp_as_buffer */ 0, /* tp_as_buffer */
...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int ...@@ -2302,10 +2280,11 @@ SWIGRUNTIME int
SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) { SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int flags, int *own) {
int res; int res;
SwigPyObject *sobj; SwigPyObject *sobj;
int implicit_conv = (flags & SWIG_POINTER_IMPLICIT_CONV) != 0;
if (!obj) if (!obj)
return SWIG_ERROR; return SWIG_ERROR;
if (obj == Py_None) { if (obj == Py_None && !implicit_conv) {
if (ptr) if (ptr)
*ptr = 0; *ptr = 0;
return SWIG_OK; return SWIG_OK;
...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2354,7 +2333,7 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
res = SWIG_OK; res = SWIG_OK;
} else { } else {
if (flags & SWIG_POINTER_IMPLICIT_CONV) { if (implicit_conv) {
SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0; SwigPyClientData *data = ty ? (SwigPyClientData *) ty->clientdata : 0;
if (data && !data->implicitconv) { if (data && !data->implicitconv) {
PyObject *klass = data->klass; PyObject *klass = data->klass;
...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int ...@@ -2389,6 +2368,13 @@ SWIG_Python_ConvertPtrAndOwn(PyObject *obj, void **ptr, swig_type_info *ty, int
} }
} }
} }
if (!SWIG_IsOK(res) && obj == Py_None) {
if (ptr)
*ptr = 0;
if (PyErr_Occurred())
PyErr_Clear();
res = SWIG_OK;
}
} }
return res; return res;
} }
...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this) ...@@ -2476,7 +2462,7 @@ SWIG_Python_NewShadowInstance(SwigPyClientData *data, PyObject *swig_this)
} }
} else { } else {
#if PY_VERSION_HEX >= 0x03000000 #if PY_VERSION_HEX >= 0x03000000
inst = PyBaseObject_Type.tp_new((PyTypeObject*) data->newargs, Py_None, Py_None); inst = ((PyTypeObject*) data->newargs)->tp_new((PyTypeObject*) data->newargs, Py_None, Py_None);
if (inst) { if (inst) {
PyObject_SetAttr(inst, SWIG_This(), swig_this); PyObject_SetAttr(inst, SWIG_This(), swig_this);
Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; Py_TYPE(inst)->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2888,7 +2874,7 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
PyObject *descr; PyObject *descr;
PyObject *encoded_name; PyObject *encoded_name;
descrsetfunc f; descrsetfunc f;
int res; int res = -1;
# ifdef Py_USING_UNICODE # ifdef Py_USING_UNICODE
if (PyString_Check(name)) { if (PyString_Check(name)) {
...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) { ...@@ -2911,7 +2897,6 @@ SWIG_Python_NonDynamicSetAttr(PyObject *obj, PyObject *name, PyObject *value) {
goto done; goto done;
} }
res = -1;
descr = _PyType_Lookup(tp, name); descr = _PyType_Lookup(tp, name);
f = NULL; f = NULL;
if (descr != NULL) if (descr != NULL)
...@@ -2983,7 +2968,7 @@ static swig_module_info swig_module = {swig_types, 8, 0, 0, 0, 0}; ...@@ -2983,7 +2968,7 @@ static swig_module_info swig_module = {swig_types, 8, 0, 0, 0, 0};
#endif #endif
#define SWIG_name "_pyUModbus" #define SWIG_name "_pyUModbus"
#define SWIGVERSION 0x020010 #define SWIGVERSION 0x030000
#define SWIG_VERSION SWIGVERSION #define SWIG_VERSION SWIGVERSION
...@@ -5136,7 +5121,7 @@ SWIGINTERN PyObject *_wrap_Params_argv_set(PyObject *SWIGUNUSEDPARM(self), PyObj ...@@ -5136,7 +5121,7 @@ SWIGINTERN PyObject *_wrap_Params_argv_set(PyObject *SWIGUNUSEDPARM(self), PyObj
{ {
if (arg2) { if (arg2) {
size_t ii = 0; size_t ii = 0;
for (; ii < (size_t)UTypes::Params::max; ++ii) arg1->argv[ii] = arg2[ii]; for (; ii < (size_t)UTypes::Params::max; ++ii) *(char * *)&arg1->argv[ii] = *((char * *)arg2 + ii);
} else { } else {
SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""argv""' of type '""char *[UTypes::Params::max]""'"); SWIG_exception_fail(SWIG_ValueError, "invalid null reference " "in variable '""argv""' of type '""char *[UTypes::Params::max]""'");
} }
...@@ -5720,18 +5705,18 @@ static swig_const_info swig_const_table[] = { ...@@ -5720,18 +5705,18 @@ static swig_const_info swig_const_table[] = {
#endif #endif
/* ----------------------------------------------------------------------------- /* -----------------------------------------------------------------------------
* Type initialization: * Type initialization:
* This problem is tough by the requirement that no dynamic * This problem is tough by the requirement that no dynamic
* memory is used. Also, since swig_type_info structures store pointers to * memory is used. Also, since swig_type_info structures store pointers to
* swig_cast_info structures and swig_cast_info structures store pointers back * swig_cast_info structures and swig_cast_info structures store pointers back
* to swig_type_info structures, we need some lookup code at initialization. * to swig_type_info structures, we need some lookup code at initialization.
* The idea is that swig generates all the structures that are needed. * The idea is that swig generates all the structures that are needed.
* The runtime then collects these partially filled structures. * The runtime then collects these partially filled structures.
* The SWIG_InitializeModule function takes these initial arrays out of * The SWIG_InitializeModule function takes these initial arrays out of
* swig_module, and does all the lookup, filling in the swig_module.types * swig_module, and does all the lookup, filling in the swig_module.types
* array with the correct data and linking the correct swig_cast_info * array with the correct data and linking the correct swig_cast_info
* structures together. * structures together.
* *
* The generated swig_type_info structures are assigned staticly to an initial * The generated swig_type_info structures are assigned statically to an initial
* array. We just loop through that array, and handle each type individually. * array. We just loop through that array, and handle each type individually.
* First we lookup if this type has been already loaded, and if so, use the * First we lookup if this type has been already loaded, and if so, use the
* loaded structure instead of the generated one. Then we have to fill in the * loaded structure instead of the generated one. Then we have to fill in the
...@@ -5741,17 +5726,17 @@ static swig_const_info swig_const_table[] = { ...@@ -5741,17 +5726,17 @@ static swig_const_info swig_const_table[] = {
* a column is one of the swig_cast_info structures for that type. * a column is one of the swig_cast_info structures for that type.
* The cast_initial array is actually an array of arrays, because each row has * The cast_initial array is actually an array of arrays, because each row has
* a variable number of columns. So to actually build the cast linked list, * a variable number of columns. So to actually build the cast linked list,
* we find the array of casts associated with the type, and loop through it * we find the array of casts associated with the type, and loop through it
* adding the casts to the list. The one last trick we need to do is making * adding the casts to the list. The one last trick we need to do is making
* sure the type pointer in the swig_cast_info struct is correct. * sure the type pointer in the swig_cast_info struct is correct.
* *
* First off, we lookup the cast->type name to see if it is already loaded. * First off, we lookup the cast->type name to see if it is already loaded.
* There are three cases to handle: * There are three cases to handle:
* 1) If the cast->type has already been loaded AND the type we are adding * 1) If the cast->type has already been loaded AND the type we are adding
* casting info to has not been loaded (it is in this module), THEN we * casting info to has not been loaded (it is in this module), THEN we
* replace the cast->type pointer with the type pointer that has already * replace the cast->type pointer with the type pointer that has already
* been loaded. * been loaded.
* 2) If BOTH types (the one we are adding casting info to, and the * 2) If BOTH types (the one we are adding casting info to, and the
* cast->type) are loaded, THEN the cast info has already been loaded by * cast->type) are loaded, THEN the cast info has already been loaded by
* the previous module so we just ignore it. * the previous module so we just ignore it.
* 3) Finally, if cast->type has not already been loaded, then we add that * 3) Finally, if cast->type has not already been loaded, then we add that
...@@ -5814,7 +5799,7 @@ SWIG_InitializeModule(void *clientdata) { ...@@ -5814,7 +5799,7 @@ SWIG_InitializeModule(void *clientdata) {
module_head->next = &swig_module; module_head->next = &swig_module;
} }
/* When multiple interpeters are used, a module could have already been initialized in /* When multiple interpreters are used, a module could have already been initialized in
a different interpreter, but not yet have a pointer in this interpreter. a different interpreter, but not yet have a pointer in this interpreter.
In this case, we do not want to continue adding types... everything should be In this case, we do not want to continue adding types... everything should be
set up already */ set up already */
...@@ -6061,7 +6046,7 @@ extern "C" { ...@@ -6061,7 +6046,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == NULL && !PyErr_Occurred()) { if (res == NULL && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
...@@ -6078,7 +6063,7 @@ extern "C" { ...@@ -6078,7 +6063,7 @@ extern "C" {
var = var->next; var = var->next;
} }
if (res == 1 && !PyErr_Occurred()) { if (res == 1 && !PyErr_Occurred()) {
PyErr_SetString(PyExc_NameError,"Unknown C global variable"); PyErr_Format(PyExc_AttributeError, "Unknown C global variable '%s'", n);
} }
return res; return res;
} }
......
# This file was automatically generated by SWIG (http://www.swig.org). # This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10 # Version 3.0.0
# #
# Do not make changes to this file unless you know what you are doing--modify # Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead. # the SWIG interface file instead.
from sys import version_info from sys import version_info
if version_info >= (2,6,0): if version_info >= (2,6,0):
def swig_import_helper(): def swig_import_helper():
...@@ -62,7 +64,7 @@ class Params: ...@@ -62,7 +64,7 @@ class Params:
__getattr__ = lambda self, name: _swig_getattr(self, Params, name) __getattr__ = lambda self, name: _swig_getattr(self, Params, name)
__repr__ = _swig_repr __repr__ = _swig_repr
max = _pyUConnector.Params_max max = _pyUConnector.Params_max
def __init__(self): def __init__(self):
this = _pyUConnector.new_Params() this = _pyUConnector.new_Params()
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -89,7 +91,7 @@ class UConnector: ...@@ -89,7 +91,7 @@ class UConnector:
__swig_getmethods__ = {} __swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, UConnector, name) __getattr__ = lambda self, name: _swig_getattr(self, UConnector, name)
__repr__ = _swig_repr __repr__ = _swig_repr
def __init__(self, *args): def __init__(self, *args):
this = _pyUConnector.new_UConnector(*args) this = _pyUConnector.new_UConnector(*args)
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -108,3 +110,5 @@ UConnector_swigregister = _pyUConnector.UConnector_swigregister ...@@ -108,3 +110,5 @@ UConnector_swigregister = _pyUConnector.UConnector_swigregister
UConnector_swigregister(UConnector) UConnector_swigregister(UConnector)
# This file is compatible with both classic and new-style classes. # This file is compatible with both classic and new-style classes.
# This file was automatically generated by SWIG (http://www.swig.org). # This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10 # Version 3.0.0
# #
# Do not make changes to this file unless you know what you are doing--modify # Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead. # the SWIG interface file instead.
from sys import version_info from sys import version_info
if version_info >= (2,6,0): if version_info >= (2,6,0):
def swig_import_helper(): def swig_import_helper():
...@@ -61,7 +63,7 @@ class UException: ...@@ -61,7 +63,7 @@ class UException:
__swig_getmethods__ = {} __swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, UException, name) __getattr__ = lambda self, name: _swig_getattr(self, UException, name)
__repr__ = _swig_repr __repr__ = _swig_repr
def __init__(self, *args): def __init__(self, *args):
this = _pyUExceptions.new_UException(*args) this = _pyUExceptions.new_UException(*args)
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -81,7 +83,7 @@ class UTimeOut(UException): ...@@ -81,7 +83,7 @@ class UTimeOut(UException):
for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
__getattr__ = lambda self, name: _swig_getattr(self, UTimeOut, name) __getattr__ = lambda self, name: _swig_getattr(self, UTimeOut, name)
__repr__ = _swig_repr __repr__ = _swig_repr
def __init__(self, *args): def __init__(self, *args):
this = _pyUExceptions.new_UTimeOut(*args) this = _pyUExceptions.new_UTimeOut(*args)
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -98,7 +100,7 @@ class USysError(UException): ...@@ -98,7 +100,7 @@ class USysError(UException):
for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
__getattr__ = lambda self, name: _swig_getattr(self, USysError, name) __getattr__ = lambda self, name: _swig_getattr(self, USysError, name)
__repr__ = _swig_repr __repr__ = _swig_repr
def __init__(self, *args): def __init__(self, *args):
this = _pyUExceptions.new_USysError(*args) this = _pyUExceptions.new_USysError(*args)
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -108,3 +110,5 @@ USysError_swigregister = _pyUExceptions.USysError_swigregister ...@@ -108,3 +110,5 @@ USysError_swigregister = _pyUExceptions.USysError_swigregister
USysError_swigregister(USysError) USysError_swigregister(USysError)
# This file is compatible with both classic and new-style classes. # This file is compatible with both classic and new-style classes.
# This file was automatically generated by SWIG (http://www.swig.org). # This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10 # Version 3.0.0
# #
# Do not make changes to this file unless you know what you are doing--modify # Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead. # the SWIG interface file instead.
from sys import version_info from sys import version_info
if version_info >= (2,6,0): if version_info >= (2,6,0):
def swig_import_helper(): def swig_import_helper():
......
# This file was automatically generated by SWIG (http://www.swig.org). # This file was automatically generated by SWIG (http://www.swig.org).
# Version 2.0.10 # Version 3.0.0
# #
# Do not make changes to this file unless you know what you are doing--modify # Do not make changes to this file unless you know what you are doing--modify
# the SWIG interface file instead. # the SWIG interface file instead.
from sys import version_info from sys import version_info
if version_info >= (2,6,0): if version_info >= (2,6,0):
def swig_import_helper(): def swig_import_helper():
...@@ -98,7 +100,7 @@ class Params: ...@@ -98,7 +100,7 @@ class Params:
__getattr__ = lambda self, name: _swig_getattr(self, Params, name) __getattr__ = lambda self, name: _swig_getattr(self, Params, name)
__repr__ = _swig_repr __repr__ = _swig_repr
max = _pyUniSet.Params_max max = _pyUniSet.Params_max
def __init__(self): def __init__(self):
this = _pyUniSet.new_Params() this = _pyUniSet.new_Params()
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -125,7 +127,7 @@ class UException(Exception): ...@@ -125,7 +127,7 @@ class UException(Exception):
__swig_getmethods__ = {} __swig_getmethods__ = {}
__getattr__ = lambda self, name: _swig_getattr(self, UException, name) __getattr__ = lambda self, name: _swig_getattr(self, UException, name)
__repr__ = _swig_repr __repr__ = _swig_repr
def __init__(self, *args): def __init__(self, *args):
this = _pyUniSet.new_UException(*args) this = _pyUniSet.new_UException(*args)
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -145,7 +147,7 @@ class UTimeOut(UException): ...@@ -145,7 +147,7 @@ class UTimeOut(UException):
for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
__getattr__ = lambda self, name: _swig_getattr(self, UTimeOut, name) __getattr__ = lambda self, name: _swig_getattr(self, UTimeOut, name)
__repr__ = _swig_repr __repr__ = _swig_repr
def __init__(self, *args): def __init__(self, *args):
this = _pyUniSet.new_UTimeOut(*args) this = _pyUniSet.new_UTimeOut(*args)
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -162,7 +164,7 @@ class USysError(UException): ...@@ -162,7 +164,7 @@ class USysError(UException):
for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{})) for _s in [UException]: __swig_getmethods__.update(getattr(_s,'__swig_getmethods__',{}))
__getattr__ = lambda self, name: _swig_getattr(self, USysError, name) __getattr__ = lambda self, name: _swig_getattr(self, USysError, name)
__repr__ = _swig_repr __repr__ = _swig_repr
def __init__(self, *args): def __init__(self, *args):
this = _pyUniSet.new_USysError(*args) this = _pyUniSet.new_USysError(*args)
try: self.this.append(this) try: self.this.append(this)
except: self.this = this except: self.this = this
...@@ -172,3 +174,5 @@ USysError_swigregister = _pyUniSet.USysError_swigregister ...@@ -172,3 +174,5 @@ USysError_swigregister = _pyUniSet.USysError_swigregister
USysError_swigregister(USysError) USysError_swigregister(USysError)
# This file is compatible with both classic and new-style classes. # This file is compatible with both classic and new-style classes.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment