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

Method delimiter

crates/stdlib/src/csv.rs:80–82  ·  view source on GitHub ↗
(&self, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

78 impl PyDialect {
79 #[pygetset]
80 fn delimiter(&self, vm: &VirtualMachine) -> PyRef<PyStr> {
81 vm.ctx.new_str(format!("{}", self.delimiter as char))
82 }
83 #[pygetset]
84 fn quotechar(&self, vm: &VirtualMachine) -> Option<PyRef<PyStr>> {
85 Some(vm.ctx.new_str(format!("{}", self.quotechar? as char)))

Callers 2

to_readerMethod · 0.80
to_writerMethod · 0.80

Calls 1

new_strMethod · 0.45

Tested by

no test coverage detected