diff options
author | Georg Brandl <georg@python.org> | 2013-10-06 16:11:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-06 16:11:32 (GMT) |
commit | 5185d0f11892c3bae1c35502caa158a5022e9f59 (patch) | |
tree | db0b3e54e68922a031a98243825592c6c7e8dd3b | |
parent | e0f6d598966f265348858cc73ea8975fc38d6efd (diff) | |
download | cpython-5185d0f11892c3bae1c35502caa158a5022e9f59.zip cpython-5185d0f11892c3bae1c35502caa158a5022e9f59.tar.gz cpython-5185d0f11892c3bae1c35502caa158a5022e9f59.tar.bz2 |
Closes #12350: clarify blocks/block size members of stat result.
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index d4912ce..64d7874 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1386,8 +1386,8 @@ Files and Directories On some Unix systems (such as Linux), the following attributes may also be available: - * :attr:`st_blocks` - number of blocks allocated for file - * :attr:`st_blksize` - filesystem blocksize + * :attr:`st_blocks` - number of 512-byte blocks allocated for file + * :attr:`st_blksize` - filesystem blocksize for efficient file system I/O * :attr:`st_rdev` - type of device if an inode device * :attr:`st_flags` - user defined flags for file |