(this: Bound<'_, Self>)
| 414 | impl Owner { |
| 415 | #[getter] |
| 416 | fn array(this: Bound<'_, Self>) -> Bound<'_, PyArray1<f64>> { |
| 417 | let array = &this.borrow().array; |
| 418 | |
| 419 | unsafe { PyArray1::borrow_from_array(array, this.into_any()) } |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | #[test] |
no outgoing calls