(&self)
| 979 | #[pyclass(with(Constructor, Callable, Initializer), flags(BASETYPE, HAS_WEAKREF))] |
| 980 | impl Connection { |
| 981 | fn drop_db(&self) { |
| 982 | self.db.lock().take(); |
| 983 | } |
| 984 | |
| 985 | fn reset_factories(&self, vm: &VirtualMachine) { |
| 986 | let default_text_factory = PyStr::class(&vm.ctx).to_owned().into_object(); |