(py: Python<'_>)
| 16 | }; |
| 17 | |
| 18 | fn get_np_locals(py: Python<'_>) -> Bound<'_, PyDict> { |
| 19 | [("np", get_array_module(py).unwrap())] |
| 20 | .into_py_dict(py) |
| 21 | .unwrap() |
| 22 | } |
| 23 | |
| 24 | fn not_contiguous_array(py: Python<'_>) -> Bound<'_, PyArray1<i32>> { |
| 25 | py.eval( |
no test coverage detected