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 | 0bbbeb59f43001fb7b011fe4f88afe5f0b3573aa (patch) | |
tree | 2a4dfb282064797e5fe45583201e64a1d4df10e0 /Doc/library | |
parent | df40e860d34cb970b3c6c99688b916aba3804052 (diff) | |
download | cpython-0bbbeb59f43001fb7b011fe4f88afe5f0b3573aa.zip cpython-0bbbeb59f43001fb7b011fe4f88afe5f0b3573aa.tar.gz cpython-0bbbeb59f43001fb7b011fe4f88afe5f0b3573aa.tar.bz2 |
Closes #12350: clarify blocks/block size members of stat result.
Diffstat (limited to 'Doc/library')
-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 bd6b3ab..ee378a6 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1813,8 +1813,8 @@ features: 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 |