]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Lib/statvfs.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / statvfs.py
CommitLineData
4710c53d 1"""Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""\r
2from warnings import warnpy3k\r
3warnpy3k("the statvfs module has been removed in Python 3.0", stacklevel=2)\r
4del warnpy3k\r
5\r
6# Indices for statvfs struct members in the tuple returned by\r
7# os.statvfs() and os.fstatvfs().\r
8\r
9F_BSIZE = 0 # Preferred file system block size\r
10F_FRSIZE = 1 # Fundamental file system block size\r
11F_BLOCKS = 2 # Total number of file system blocks (FRSIZE)\r
12F_BFREE = 3 # Total number of free blocks\r
13F_BAVAIL = 4 # Free blocks available to non-superuser\r
14F_FILES = 5 # Total number of file nodes\r
15F_FFREE = 6 # Total number of free file nodes\r
16F_FAVAIL = 7 # Free nodes available to non-superuser\r
17F_FLAG = 8 # Flags (see your local statvfs man page)\r
18F_NAMEMAX = 9 # Maximum file name length\r