(&self, key: PyObjectRef, vm: &VirtualMachine)
| 307 | } |
| 308 | |
| 309 | fn __delitem__(&self, key: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> { |
| 310 | self.inner_delitem(&*key, vm) |
| 311 | } |
| 312 | |
| 313 | #[pymethod] |
| 314 | pub fn clear(&self) { |
nothing calls this directly
no test coverage detected