diff options
author | Georg Brandl <georg@python.org> | 2012-06-24 09:54:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2012-06-24 09:54:07 (GMT) |
commit | b1a1ac0b67e58a78592f594466bff030b45e4f21 (patch) | |
tree | 50aac10661318af94a8257b62fd5460de8e5fdad /Doc/library/os.rst | |
parent | d60cd4295c78fd8703c40bbbaf67e139315f1d4a (diff) | |
download | cpython-b1a1ac0b67e58a78592f594466bff030b45e4f21.zip cpython-b1a1ac0b67e58a78592f594466bff030b45e4f21.tar.gz cpython-b1a1ac0b67e58a78592f594466bff030b45e4f21.tar.bz2 |
Small nits in os doc.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 2fce4e5..4251113 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -645,7 +645,7 @@ as internal buffering of data. .. function:: closerange(fd_low, fd_high) Close all file descriptors from *fd_low* (inclusive) to *fd_high* (exclusive), - ignoring errors. Equivalent to:: + ignoring errors. Equivalent to (but much faster than):: for fd in range(fd_low, fd_high): try: @@ -729,6 +729,7 @@ as internal buffering of data. Availability: Unix, Windows. + .. function:: fstatvfs(fd) Return information about the filesystem containing the file associated with file |