123456789101112131415161718 |
- """Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""
- from warnings import warnpy3k
- warnpy3k("the statvfs module has been removed in Python 3.0", stacklevel=2)
- del warnpy3k
- F_BSIZE = 0
- F_FRSIZE = 1
- F_BLOCKS = 2
- F_BFREE = 3
- F_BAVAIL = 4
- F_FILES = 5
- F_FFREE = 6
- F_FAVAIL = 7
- F_FLAG = 8
- F_NAMEMAX = 9
|