(&self, vm: &VirtualMachine)
| 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( |
nothing calls this directly
no test coverage detected