Python 2.4:
>>> f = open(filename, "r")The problem is that it only reads part of the file. I don't know why it thinks the file is done in the middle like that, but to fix it, specify "rb" instead of "r".
>>> s = f.read()
>>> len(s)
114
>>> f.close()
>>> f = open(filename, "rb")
>>> s = f.read()
>>> len(s)
230
>>> f.close()
I ran into this problem writing a program in Python 2.6 using just "r" and didn't run into the problem until I tried running it in Python 2.4.