(&self, py: Python)
| 221 | /// Return a fresh tuple based on the Sequence. |
| 222 | #[inline] |
| 223 | pub fn tuple(&self, py: Python) -> PyResult<PyTuple> { |
| 224 | unsafe { result_cast_from_owned_ptr(py, ffi::PySequence_Tuple(self.as_ptr())) } |
| 225 | } |
| 226 | |
| 227 | #[inline] |
| 228 | pub fn iter<'p>(&self, py: Python<'p>) -> PyResult<PyIterator<'p>> { |
nothing calls this directly
no test coverage detected