| 128 | } |
| 129 | |
| 130 | PyObject *CPluginAlgorithm::getInstance() const { |
| 131 | if (instance) |
| 132 | Py_INCREF(instance); |
| 133 | return instance; |
| 134 | } |
| 135 | |
| 136 | PyObject * pyStringFromString(std::string str){ |
| 137 | return PyUnicode_FromString(str.c_str()); |
nothing calls this directly
no outgoing calls
no test coverage detected