You can use
os.write(tup[0], "foo\n")
to write to the handle.
If you want to open the handle for writing you need to add the "w" mode
fd
f = os.fdopen(tup[0], "w")
fd.write("foo"f.write("foo")
|
3 | deleted 2 characters in body | ||
|
You can use
to write to the handle. If you want to open the handle for writing you need to add the "w" mode |
||||
|
2 | added 21 characters in body | ||
|
You can use
to write to the handle. If you want to open the handle for writing you need to add the "w" mode
|
||||
|
1 |
|
||
|
You can use
to write to the handle. If you want to open the handle for writing you need to add the mode
|
||||