<code=python>
>>>f = file("sendBuffer.dat","rb")
>>> f.read()
'\x81x\x00>\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00A .\x00\x10aG\xce\x00
\x00\x00\x00\x00\x00\x00\x00\x01\xcd\xccL@\x00\x00\x00\x00\x00\x00\x00\x00\x00\x
00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
>>> text = f.read()
>>> print text
</code>
In the above code f.read() prints the data, but when i say print text or print length of text it returns NULL and zero respectively. Any Ideas?