(&self, vm: &VirtualMachine)
| 1708 | |
| 1709 | #[pymethod] |
| 1710 | fn seekable(&self, vm: &VirtualMachine) -> PyResult { |
| 1711 | vm.call_method(self.lock(vm)?.check_init(vm)?, "seekable", ()) |
| 1712 | } |
| 1713 | |
| 1714 | #[pygetset] |
| 1715 | fn raw(&self, vm: &VirtualMachine) -> PyResult<Option<PyObjectRef>> { |
nothing calls this directly
no test coverage detected