symbian-qemu-0.9.1-12/python-win32-2.6.1/lib/statvfs.py
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 """Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""
       
     2 from warnings import warnpy3k
       
     3 warnpy3k("the statvfs module has been removed in Python 3.0", stacklevel=2)
       
     4 del warnpy3k
       
     5 
       
     6 # Indices for statvfs struct members in the tuple returned by
       
     7 # os.statvfs() and os.fstatvfs().
       
     8 
       
     9 F_BSIZE   = 0           # Preferred file system block size
       
    10 F_FRSIZE  = 1           # Fundamental file system block size
       
    11 F_BLOCKS  = 2           # Total number of file system blocks (FRSIZE)
       
    12 F_BFREE   = 3           # Total number of free blocks
       
    13 F_BAVAIL  = 4           # Free blocks available to non-superuser
       
    14 F_FILES   = 5           # Total number of file nodes
       
    15 F_FFREE   = 6           # Total number of free file nodes
       
    16 F_FAVAIL  = 7           # Free nodes available to non-superuser
       
    17 F_FLAG    = 8           # Flags (see your local statvfs man page)
       
    18 F_NAMEMAX = 9           # Maximum file name length