Marc 'BlackJack' Rintsch wrote: > File descriptors are integers. It's a low level C thing. Either use the > low level functions in `os` or open the file with the `filename`. In particular, os.fdopen(fd) will give you a file object. -- Greg