(&self, py: Python)
| 215 | /// Return a fresh list based on the Sequence. |
| 216 | #[inline] |
| 217 | pub fn list(&self, py: Python) -> PyResult<PyList> { |
| 218 | unsafe { result_cast_from_owned_ptr(py, ffi::PySequence_List(self.as_ptr())) } |
| 219 | } |
| 220 | |
| 221 | /// Return a fresh tuple based on the Sequence. |
| 222 | #[inline] |
nothing calls this directly
no test coverage detected