(&self, vm: &VirtualMachine)
| 184 | |
| 185 | #[pymethod] |
| 186 | fn __reversed__(&self, vm: &VirtualMachine) -> PyResult { |
| 187 | vm.call_method( |
| 188 | self.to_object(vm)?.as_object(), |
| 189 | identifier!(vm, __reversed__).as_str(), |
| 190 | (), |
| 191 | ) |
| 192 | } |
| 193 | |
| 194 | fn __ior__(&self, _args: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 195 | Err(vm.new_type_error(format!( |
nothing calls this directly
no test coverage detected