(_instance: PyObjectRef, _args: FuncArgs, vm: &VirtualMachine)
| 708 | |
| 709 | #[pymethod] |
| 710 | fn readinto(_instance: PyObjectRef, _args: FuncArgs, vm: &VirtualMachine) -> PyResult { |
| 711 | Err(vm.new_not_implemented_error(String::new())) |
| 712 | } |
| 713 | |
| 714 | #[pymethod] |
| 715 | fn write(_instance: PyObjectRef, _args: FuncArgs, vm: &VirtualMachine) -> PyResult { |
nothing calls this directly
no test coverage detected