--------------------- PyUtilGetObjectType ---------------------
| 96 | //--------------------- |
| 97 | // |
| 98 | std::string |
| 99 | PyUtilGetObjectType(PyObject* obj) |
| 100 | { |
| 101 | PyTypeObject* type = obj->ob_type; |
| 102 | return std::string(type->tp_name); |
| 103 | } |
| 104 | |
| 105 | //---------------------- |
| 106 | // PyUtilGetPyErrorInfo |
no outgoing calls
no test coverage detected