(&self, py: Python<'p>)
| 226 | |
| 227 | #[inline] |
| 228 | pub fn iter<'p>(&self, py: Python<'p>) -> PyResult<PyIterator<'p>> { |
| 229 | use crate::objectprotocol::ObjectProtocol; |
| 230 | self.as_object().iter(py) |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | /// Uses the sequence protocol and converts each individual element |