definitely remove this line
| 2469 | |
| 2470 | // definitely remove this line |
| 2471 | void remove() { |
| 2472 | if(line) |
| 2473 | { |
| 2474 | auto remove_fct = PyObject_GetAttrString(line,"remove"); |
| 2475 | PyObject* args = PyTuple_New(0); |
| 2476 | PyObject* res = PyObject_CallObject(remove_fct, args); |
| 2477 | if (res) Py_DECREF(res); |
| 2478 | } |
| 2479 | decref(); |
| 2480 | } |
| 2481 | |
| 2482 | ~Plot() { |
| 2483 | decref(); |
nothing calls this directly
no outgoing calls
no test coverage detected