Create a variable linking object for use later */
| 9744 | |
| 9745 | /* Create a variable linking object for use later */ |
| 9746 | SWIGINTERN PyObject * |
| 9747 | SWIG_Python_newvarlink(void) { |
| 9748 | swig_varlinkobject *result = PyObject_NEW(swig_varlinkobject, swig_varlink_type()); |
| 9749 | if (result) { |
| 9750 | result->vars = 0; |
| 9751 | } |
| 9752 | return ((PyObject*) result); |
| 9753 | } |
| 9754 | |
| 9755 | SWIGINTERN void |
| 9756 | SWIG_Python_addvarlink(PyObject *p, const char *name, PyObject *(*get_attr)(void), int (*set_attr)(PyObject *p)) { |
nothing calls this directly
no outgoing calls
no test coverage detected