[Erik Max Francis] > Note: open() is an alias for file(). I read somewhere that 'file' was preferred to the use of 'open' because of the symmetry to the type: >>> f = file("junk.txt") >>> type(f) <type 'file'> Anyway, that's how I've trained myself to spell 'open'. Cheers, // m -