(&self, vm: &VirtualMachine)
| 420 | |
| 421 | impl PyRange { |
| 422 | fn protocol_length(&self, vm: &VirtualMachine) -> PyResult<usize> { |
| 423 | PyInt::from(self.__len__()) |
| 424 | .try_to_primitive::<isize>(vm) |
| 425 | .map(|x| x as usize) |
| 426 | } |
| 427 | } |
| 428 | |
| 429 | impl AsMapping for PyRange { |