| 112 | } |
| 113 | |
| 114 | std::string pyInstanceTypeStr(const pybind11::object& obj) { |
| 115 | return pyTry<std::string>([&]() { return pyTypeStr(obj.attr("__class__")); }); |
| 116 | } |
| 117 | |
| 118 | std::string toString(const pybind11::object& obj) { |
| 119 | return pyTry<std::string>( |
no test coverage detected