MCPcopy Index your code
hub / github.com/RustPython/RustPython / commit

Method commit

crates/stdlib/src/_sqlite3.rs:1099–1101  ·  view source on GitHub ↗
(&self, vm: &VirtualMachine)

Source from the content-addressed store, hash-verified

1097
1098 #[pymethod]
1099 fn commit(&self, vm: &VirtualMachine) -> PyResult<()> {
1100 self.db_lock(vm)?.implicit_commit(vm)
1101 }
1102
1103 #[pymethod]
1104 fn rollback(&self, vm: &VirtualMachine) -> PyResult<()> {

Calls 2

implicit_commitMethod · 0.80
db_lockMethod · 0.80