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

Method del_item

crates/vm/src/protocol/sequence.rs:259–261  ·  view source on GitHub ↗
(self, i: isize, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

257 }
258
259 pub fn del_item(self, i: isize, vm: &VirtualMachine) -> PyResult<()> {
260 self._ass_item(i, None, vm)
261 }
262
263 pub fn get_slice(&self, start: isize, stop: isize, vm: &VirtualMachine) -> PyResult {
264 if let Ok(mapping) = self.obj.try_mapping(vm) {

Callers

nothing calls this directly

Calls 1

_ass_itemMethod · 0.80

Tested by

no test coverage detected