Changes between Initial Version and Version 1 of Ticket #834, comment 2
- Timestamp:
- Jan 20, 2014, 2:25:39 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #834, comment 2
initial v1 1 1 According to the Python docs, a '''file''' object's ''read()'' method will read the entire file unless a size is specified. 2 2 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. 4 4 5 5 Based upon this, I made the following change which appears to have fixed the problem.