(&self, vm: &VirtualMachine, other_key: &PyObject)
| 859 | |
| 860 | #[inline(always)] |
| 861 | fn key_eq(&self, vm: &VirtualMachine, other_key: &PyObject) -> PyResult<bool> { |
| 862 | vm.identical_or_equal(self, other_key) |
| 863 | } |
| 864 | |
| 865 | #[inline] |
| 866 | fn key_as_isize(&self, vm: &VirtualMachine) -> PyResult<isize> { |