()
| 1755 | |
| 1756 | #[test] |
| 1757 | fn test_hasobject_flag() { |
| 1758 | Python::attach(|py| { |
| 1759 | let array: Bound<'_, PyArray<Py<PyAny>, _>> = |
| 1760 | PyArray1::from_slice(py, &[PyList::empty(py).into()]); |
| 1761 | |
| 1762 | py_run!(py, array, "assert array.dtype.hasobject"); |
| 1763 | }); |
| 1764 | } |
| 1765 | } |
nothing calls this directly
no test coverage detected