(&self, vm: &VirtualMachine)
| 85 | } |
| 86 | |
| 87 | fn len(&self, vm: &VirtualMachine) -> PyResult<usize> { |
| 88 | self.try_upgrade(vm)?.length(vm) |
| 89 | } |
| 90 | |
| 91 | #[pymethod] |
| 92 | fn __bytes__(&self, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected