| 163 | // --------------------------------------------- |
| 164 | |
| 165 | object::object(PyObject* ptr) : m_ptr(ptr) { check_error(); } |
| 166 | object::object(const std::string& val) |
| 167 | { |
| 168 | global_interpreter_lock gil; |
nothing calls this directly
no test coverage detected