Greg Ewing wrote: > The best you could do would be to return some kind > of opaque object from tell() that could be passed > back to seek(). that's how seek/tell works on text files in today's Python, of course. if you're writing portable code, you can only seek to the beginning or end of the file, or to a position returned to you by tell. </F>