This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: docs for os.statvfs miss f_bsize parameter
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: chriscog, nnorwitz
Priority: normal Keywords:

Created on 2006-03-03 22:42 by chriscog, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg27672 - (view) Author: Chris Cogdon (chriscog) * Date: 2006-03-03 22:42
The documentation for os.statvfs miss the f_bsize
parameter.

On (for example) os-file-dir.html, it lists the
parameters as follows:

f_frsize, f_blocks, f_bfree, f_bavail ... (and so on).

it SHOULD be:

f_bsize, f_frsize, f_blocks, f_bfree, f_bavail ...
msg27673 - (view) Author: Neal Norwitz (nnorwitz) * (Python committer) Date: 2006-03-03 23:13
Logged In: YES 
user_id=33168

Thanks!  Fixed.

Committed revision 42820.
Committed revision 42821.
History
Date User Action Args
2022-04-11 14:56:15adminsetgithub: 42974
2006-03-03 22:42:44chriscogcreate