| 1130 | /* Error manipulation */ |
| 1131 | |
| 1132 | SWIGINTERN void |
| 1133 | SWIG_Python_SetErrorObj(PyObject *errtype, PyObject *obj) { |
| 1134 | SWIG_PYTHON_THREAD_BEGIN_BLOCK; |
| 1135 | PyErr_SetObject(errtype, obj); |
| 1136 | Py_DECREF(obj); |
| 1137 | SWIG_PYTHON_THREAD_END_BLOCK; |
| 1138 | } |
| 1139 | |
| 1140 | SWIGINTERN void |
| 1141 | SWIG_Python_SetErrorMsg(PyObject *errtype, const char *msg) { |
nothing calls this directly
no outgoing calls
no test coverage detected