| 755 | /// Flags for the array descriptor |
| 756 | #ifdef PYBIND11_NUMPY_1_ONLY |
| 757 | char flags() const { return detail::array_descriptor_proxy(m_ptr)->flags; } |
| 758 | #else |
| 759 | std::uint64_t flags() const { |
| 760 | if (detail::npy_api::get().PyArray_RUNTIME_VERSION_ < 0x12) { |
no test coverage detected