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

Method __delitem__

crates/stdlib/src/array.rs:1051–1053  ·  view source on GitHub ↗
(&self, needle: PyObjectRef, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

1049 }
1050
1051 fn __delitem__(&self, needle: PyObjectRef, vm: &VirtualMachine) -> PyResult<()> {
1052 self.delitem_inner(&needle, vm)
1053 }
1054
1055 fn __add__(&self, other: PyObjectRef, vm: &VirtualMachine) -> PyResult<PyRef<Self>> {
1056 if let Some(other) = other.downcast_ref::<Self>() {

Callers

nothing calls this directly

Calls 1

delitem_innerMethod · 0.80

Tested by

no test coverage detected