(&self, val: Option<PyObjectRef>)
| 1567 | } |
| 1568 | #[pygetset(setter)] |
| 1569 | fn set_row_factory(&self, val: Option<PyObjectRef>) { |
| 1570 | let _ = unsafe { self.row_factory.swap(val) }; |
| 1571 | } |
| 1572 | |
| 1573 | fn check_thread(&self, vm: &VirtualMachine) -> PyResult<()> { |
| 1574 | if self.check_same_thread.load(Ordering::Relaxed) { |