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

Method iterdump

crates/stdlib/src/_sqlite3.rs:1443–1447  ·  view source on GitHub ↗
(zelf: PyRef<Self>, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

1441
1442 #[pymethod]
1443 fn iterdump(zelf: PyRef<Self>, vm: &VirtualMachine) -> PyResult {
1444 let module = vm.import("sqlite3.dump", 0)?;
1445 let func = module.get_attr("_iterdump", vm)?;
1446 func.call((zelf,), vm)
1447 }
1448
1449 #[pymethod]
1450 fn interrupt(&self, vm: &VirtualMachine) -> PyResult<()> {

Calls 3

importMethod · 0.45
get_attrMethod · 0.45
callMethod · 0.45