(vm: &VirtualMachine)
| 130 | |
| 131 | #[pyattr] |
| 132 | fn sqlite_version(vm: &VirtualMachine) -> String { |
| 133 | let s = unsafe { sqlite3_libversion() }; |
| 134 | ptr_to_str(s, vm).unwrap().to_owned() |
| 135 | } |
| 136 | |
| 137 | #[pyattr] |
| 138 | fn threadsafety(_: &VirtualMachine) -> c_int { |
nothing calls this directly
no test coverage detected