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

Method del_slice

crates/vm/src/protocol/sequence.rs:314–316  ·  view source on GitHub ↗
(&self, start: isize, stop: isize, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

312 }
313
314 pub fn del_slice(&self, start: isize, stop: isize, vm: &VirtualMachine) -> PyResult<()> {
315 self._ass_slice(start, stop, None, vm)
316 }
317
318 pub fn tuple(&self, vm: &VirtualMachine) -> PyResult<PyTupleRef> {
319 if let Some(tuple) = self.obj.downcast_ref_if_exact::<PyTuple>(vm) {

Callers

nothing calls this directly

Calls 1

_ass_sliceMethod · 0.80

Tested by

no test coverage detected