MCPcopy Index your code
hub / github.com/RustPython/RustPython / __delitem__

Method __delitem__

crates/vm/src/builtins/dict.rs:309–311  ·  view source on GitHub ↗
(&self, key: PyObjectRef, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

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) {

Callers

nothing calls this directly

Calls 1

inner_delitemMethod · 0.80

Tested by

no test coverage detected