(&self, vm: &VirtualMachine)
| 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))) |