ยปCore Development>Code coverage>Lib/statvfs.py

Python code coverage for Lib/statvfs.py

#countcontent
11"""Constants for interpreting the results of os.statvfs() and os.fstatvfs()."""
21from warnings import warnpy3k
31warnpy3k("the statvfs module has been removed in Python 3.0", stacklevel=2)
41del warnpy3k
5n/a
6n/a# Indices for statvfs struct members in the tuple returned by
7n/a# os.statvfs() and os.fstatvfs().
8n/a
91F_BSIZE = 0 # Preferred file system block size
101F_FRSIZE = 1 # Fundamental file system block size
111F_BLOCKS = 2 # Total number of file system blocks (FRSIZE)
121F_BFREE = 3 # Total number of free blocks
131F_BAVAIL = 4 # Free blocks available to non-superuser
141F_FILES = 5 # Total number of file nodes
151F_FFREE = 6 # Total number of free file nodes
161F_FAVAIL = 7 # Free nodes available to non-superuser
171F_FLAG = 8 # Flags (see your local statvfs man page)
181F_NAMEMAX = 9 # Maximum file name length