(
&'b self,
vm: &'a VirtualMachine,
)
| 60 | } |
| 61 | |
| 62 | pub fn iter_without_hint<'a, 'b, U>( |
| 63 | &'b self, |
| 64 | vm: &'a VirtualMachine, |
| 65 | ) -> PyResult<PyIterIter<'a, U, &'b PyObject>> { |
| 66 | Ok(PyIterIter::new(vm, self.0.borrow(), None)) |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | impl PyIter<PyObjectRef> { |