(&self, _vm: &VirtualMachine)
| 1074 | impl Writer { |
| 1075 | #[pygetset(name = "dialect")] |
| 1076 | const fn get_dialect(&self, _vm: &VirtualMachine) -> PyDialect { |
| 1077 | self.dialect |
| 1078 | } |
| 1079 | #[pymethod] |
| 1080 | fn writerow(&self, row: PyObjectRef, vm: &VirtualMachine) -> PyResult { |
| 1081 | let mut state = self.state.lock(); |
no outgoing calls