There was an error while loading. Please reload this page.
readinto
write
RawIOBase
1 parent e0eb6d5 commit 5a1b335Copy full SHA for 5a1b335
1 file changed
crates/vm/src/stdlib/io.rs
@@ -700,6 +700,16 @@ mod _io {
700
}
701
Ok(Some(ret))
702
703
+
704
+ #[pymethod]
705
+ fn readinto(_instance: PyObjectRef, _args: FuncArgs, vm: &VirtualMachine) -> PyResult {
706
+ Err(vm.new_not_implemented_error(String::new()))
707
+ }
708
709
710
+ fn write(_instance: PyObjectRef, _args: FuncArgs, vm: &VirtualMachine) -> PyResult {
711
712
713
714
715
#[pyattr]
0 commit comments