blob: 79610b6d800df6a4703baaf9880736d4e3b264f4 [file] [log] [blame]
Guido van Rossum2386d731999-01-06 18:54:57 +00001# Module 'statvfs'
2#
3# Defines constants for interpreting statvfs struct as returned
4# by os.statvfs() and os.fstatvfs() (if they exist).
5#
6
7# Indices for statvfs struct members in tuple returned by
8# os.statvfs() and os.fstatvfs()
9
10F_BSIZE = 0
11F_FRSIZE = 1
12F_BLOCKS = 2
13F_BFREE = 3
14F_BAVAIL = 4
15F_FILES = 5
16F_FFREE = 6
17F_FAVAIL = 7
18F_FSID = 8
19F_FLAG = 9
20F_NAMEMAX = 10