| 60 | |
| 61 | static object_t wrap(PyObject* p) { return object_t{p, wrap_t{}}; } |
| 62 | static object_t adopt(PyObject* p) { return object_t{p, adopt_t{}}; } |
| 63 | |
| 64 | object_t(const object_t& o) |
| 65 | : ptr_(o.ptr_) |
nothing calls this directly
no outgoing calls
no test coverage detected