------------------- PyUtilApiFunction -------------------
| 42 | //------------------- |
| 43 | // |
| 44 | PyUtilApiFunction::PyUtilApiFunction(const std::string& format, PyObject* pyError, const char* function) |
| 45 | { |
| 46 | std::string functionName = PyUtilGetFunctionName(function); |
| 47 | this->msgp = PyUtilGetMsgPrefix(functionName); |
| 48 | this->formatString = format + ":" + functionName; |
| 49 | this->format = this->formatString.c_str(); |
| 50 | this->pyError = pyError; |
| 51 | } |
| 52 | |
| 53 | //------- |
| 54 | // error |
nothing calls this directly
no test coverage detected