The Python docs on file.read() state that An empty string is returned when EOF is encountered immediately.
The documentation further states:
Note that this method may call the underlying C function fread() more than once in an effort to acquire as close to size bytes as possible. Also note that when in non-blocking mode, less data than was requested may be returned, even if no size parameter was given.
I believe Guido has made his view on not adding f.eof() PERFECTLY CLEAR so need to use the Python way!
What is not clear to ME, however, is if it is a definitive test that you have reached EOF if you receive less than the requested bytes from a read, but you did receive some.
ie:
with open(filename,'rb') as f:
while True:
s=f.read(size)
l=len(s)
if l==0:
break # it is clear that this is EOF...
if l<size:
break # ? Is receiving less than the request EOF???
Is it a potential error to break
if you have received less than the bytes requested in a call to file.read(size)
?
Here's what my C compiler's documentation says for the
fread()
function:So it looks like getting less than
size
means either an error has occurred or EOF has been reached -- sobreak
ing out of the loop would be the correct thing to do.You are not thinking with your snake skin on... Python is not C.
First, a review:
n
bytes and in no case more thann
bytes;If a file read method is at EOF, it returns
''
. The same type of EOF test is used in the other 'file like" methods like StringIO, socket.makefile, etc. A return of less thann
bytes fromf.read(n)
is most assuredly NOT a dispositive test for EOF! While that code may work 99.99% of the time, it is the times it does not work that would be very frustrating to find. Plus, it is bad Python form. The only use forn
in this case is to put an upper limit on the size of the return.What are some of the reasons the Python file-like methods returns less than
n
bytes?n
bytes may cause a break between logical multi-byte characters (such as\r\n
in text mode and, I think, a multi-byte character in Unicode) or some underlying data structure not known to you;I would rewrite your code in this manner:
Or, write a generator: