Changes between Initial Version and Version 1 of Ticket #834, comment 2


Ignore:
Timestamp:
Jan 20, 2014, 2:25:39 PM (10 years ago)
Author:
saul

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #834, comment 2

    initial v1  
    11According to the Python docs, a '''file''' object's ''read()'' method will read the entire file unless a size is specified.
    22
    3 read([size]) -- Read at most size bytes from the file (less if the read hits EOF before obtaining size bytes). If the size argument is negative or omitted, read all data until EOF is reached.
     3    read([size]) -- Read at most size bytes from the file (less if the read hits EOF before obtaining size bytes). If the size argument is negative or omitted, read all data until EOF is reached.
    44
    55Based upon this, I made the following change which appears to have fixed the problem.