(&self, vm: &VirtualMachine)
| 618 | impl Py<PyDict> { |
| 619 | #[inline] |
| 620 | fn exact_dict(&self, vm: &VirtualMachine) -> bool { |
| 621 | self.class().is(vm.ctx.types.dict_type) |
| 622 | } |
| 623 | |
| 624 | fn missing_opt<K: DictKey + ?Sized>( |
| 625 | &self, |
no test coverage detected