Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../lib64/python2....
File: statvfs.py
"""Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""
[0] Fix | Delete
from warnings import warnpy3k
[1] Fix | Delete
warnpy3k("the statvfs module has been removed in Python 3.0", stacklevel=2)
[2] Fix | Delete
del warnpy3k
[3] Fix | Delete
[4] Fix | Delete
# Indices for statvfs struct members in the tuple returned by
[5] Fix | Delete
# os.statvfs() and os.fstatvfs().
[6] Fix | Delete
[7] Fix | Delete
F_BSIZE = 0 # Preferred file system block size
[8] Fix | Delete
F_FRSIZE = 1 # Fundamental file system block size
[9] Fix | Delete
F_BLOCKS = 2 # Total number of file system blocks (FRSIZE)
[10] Fix | Delete
F_BFREE = 3 # Total number of free blocks
[11] Fix | Delete
F_BAVAIL = 4 # Free blocks available to non-superuser
[12] Fix | Delete
F_FILES = 5 # Total number of file nodes
[13] Fix | Delete
F_FFREE = 6 # Total number of free file nodes
[14] Fix | Delete
F_FAVAIL = 7 # Free nodes available to non-superuser
[15] Fix | Delete
F_FLAG = 8 # Flags (see your local statvfs man page)
[16] Fix | Delete
F_NAMEMAX = 9 # Maximum file name length
[17] Fix | Delete
[18] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function