| 1593 | } |
| 1594 | |
| 1595 | SWIGRUNTIME int |
| 1596 | SwigPyObject_print(SwigPyObject *v, FILE *fp, int SWIGUNUSEDPARM(flags)) |
| 1597 | { |
| 1598 | char *str; |
| 1599 | #ifdef METH_NOARGS |
| 1600 | PyObject *repr = SwigPyObject_repr(v); |
| 1601 | #else |
| 1602 | PyObject *repr = SwigPyObject_repr(v, NULL); |
| 1603 | #endif |
| 1604 | if (repr) { |
| 1605 | str = SWIG_Python_str_AsChar(repr); |
| 1606 | fputs(str, fp); |
| 1607 | SWIG_Python_str_DelForPy3(str); |
| 1608 | Py_DECREF(repr); |
| 1609 | return 0; |
| 1610 | } else { |
| 1611 | return 1; |
| 1612 | } |
| 1613 | } |
| 1614 | |
| 1615 | SWIGRUNTIME PyObject * |
| 1616 | SwigPyObject_str(SwigPyObject *v) |
nothing calls this directly
no test coverage detected