diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2008-07-03 12:50:03 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2008-07-03 12:50:03 (GMT) |
commit | f5d2b4ce930666c9f58c9c7da1744388143860df (patch) | |
tree | b52ab1594ff300e43afb7a7b6c55ad4243169b45 | |
parent | 968117e97462bf086d25efb9b1990521f42f3409 (diff) | |
download | cpython-f5d2b4ce930666c9f58c9c7da1744388143860df.zip cpython-f5d2b4ce930666c9f58c9c7da1744388143860df.tar.gz cpython-f5d2b4ce930666c9f58c9c7da1744388143860df.tar.bz2 |
Tweak wording
-rw-r--r-- | Doc/library/stdtypes.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 8cc3722..2da9f9f 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2055,12 +2055,12 @@ Files have the following methods: files, like ttys, it makes sense to continue reading after an EOF is hit.) Note that this method may call the underlying C function :cfunc:`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 what was requested may be + that when in non-blocking mode, less data than was requested may be returned, even if no *size* parameter was given. .. note:: - As this function depends of the underlying C function :cfunc:`fread`, - it resembles its behaviour in details like caching EOF and others. + As this function depends on the underlying :cfunc:`fread` C function, + it will behave the same in details such as caching EOF. .. method:: file.readline([size]) |