]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/statvfs.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / statvfs.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/statvfs.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/statvfs.py
deleted file mode 100644 (file)
index 6aeddd5..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-"""Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""\r
-from warnings import warnpy3k\r
-warnpy3k("the statvfs module has been removed in Python 3.0", stacklevel=2)\r
-del warnpy3k\r
-\r
-# Indices for statvfs struct members in the tuple returned by\r
-# os.statvfs() and os.fstatvfs().\r
-\r
-F_BSIZE   = 0           # Preferred file system block size\r
-F_FRSIZE  = 1           # Fundamental file system block size\r
-F_BLOCKS  = 2           # Total number of file system blocks (FRSIZE)\r
-F_BFREE   = 3           # Total number of free blocks\r
-F_BAVAIL  = 4           # Free blocks available to non-superuser\r
-F_FILES   = 5           # Total number of file nodes\r
-F_FFREE   = 6           # Total number of free file nodes\r
-F_FAVAIL  = 7           # Free nodes available to non-superuser\r
-F_FLAG    = 8           # Flags (see your local statvfs man page)\r
-F_NAMEMAX = 9           # Maximum file name length\r