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

Method tell

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

Source from the content-addressed store, hash-verified

2412
2413 #[pymethod]
2414 fn tell(&self, vm: &VirtualMachine) -> PyResult<c_int> {
2415 self.ensure_connection_open(vm)?;
2416 self.inner(vm).map(|x| x.offset)
2417 }
2418
2419 #[pymethod]
2420 fn seek(

Callers

nothing calls this directly

Calls 3

mapMethod · 0.45
innerMethod · 0.45

Tested by

no test coverage detected