| 48 | explicit CustomRepr(const std::string &repr) : repr_string(repr) {} |
| 49 | |
| 50 | std::string __repr__() const { return repr_string; } |
| 51 | }; |
| 52 | |
| 53 | py::class_<CustomRepr>(m, "CustomRepr") |
nothing calls this directly
no outgoing calls
no test coverage detected