| 1 | use crate::{PyObjectRef, PyResult, types::PyComparisonOp, vm::VirtualMachine}; |
| 2 | use itertools::Itertools; |
| 3 | |
| 4 | pub trait PyExactSizeIterator<'a>: ExactSizeIterator<Item = &'a PyObjectRef> + Sized { |
nothing calls this directly
no outgoing calls
no test coverage detected