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

Method writerows

crates/stdlib/src/csv.rs:1139–1144  ·  view source on GitHub ↗
(&self, rows: ArgIterable, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

1137
1138 #[pymethod]
1139 fn writerows(&self, rows: ArgIterable, vm: &VirtualMachine) -> PyResult<()> {
1140 for row in rows.iter(vm)? {
1141 self.writerow(row?, vm)?;
1142 }
1143 Ok(())
1144 }
1145 }
1146}

Callers

nothing calls this directly

Calls 2

iterMethod · 0.45
writerowMethod · 0.45

Tested by

no test coverage detected