show/hide this revision's text 3 deleted 2 characters in body

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")
show/hide this revision's text 2 added 21 characters in body

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 = os.fdopen(tup[0], "w")
fd.write("foo")
show/hide this revision's text 1

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 mode

fd = os.fdopen(tup[0], "w")
fd.write("foo")