| 362 | bool readonly = false; |
| 363 | |
| 364 | py::buffer_info get_buffer_info() { return py::buffer_info(&value, 1, readonly); } |
| 365 | }; |
| 366 | py::class_<BufferReadOnlySelect>(m, "BufferReadOnlySelect", py::buffer_protocol()) |
| 367 | .def(py::init<>()) |
nothing calls this directly
no test coverage detected