We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent effbf07 commit ef8aa98Copy full SHA for ef8aa98
os/test_rw.py
@@ -0,0 +1,6 @@
1
+import os
2
+
3
4
+assert os.write(1, "hello\n") == len("hello\n")
5
+data = os.read(0, 256)
6
+os.write(2, "read: %s\n" % data)
0 commit comments