posix ::
statvfs_result ::
Class statvfs_result
|
|
Class statvfs_result
object --+
|
statvfs_result
statvfs_result: Result from statvfs or fstatvfs.
This object may be accessed either as a tuple of
(bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),
or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.
See os.statvfs for more information.
|
|
|
__contains__(x,
y)
y in x |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__new__(T,
S,
...)
Returns:
a new object with type S, a subtype of T |
|
|
|
|
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__init__ ,
__reduce_ex__ ,
__setattr__ ,
__str__
|
|
n_fields = 10
|
|
n_sequence_fields = 10
|
|
n_unnamed_fields = 0
|
|
f_bavail
|
|
f_bfree
|
|
f_blocks
|
|
f_bsize
|
|
f_favail
|
|
f_ffree
|
|
f_files
|
|
f_flag
|
|
f_frsize
|
|
f_namemax
|
Inherited from object :
__class__
|
__getslice__(x,
i,
j)
(Slicling operator)
|
|
x[i:j]
Use of negative indices is not supported.
|
__hash__(x)
(Hashing function)
|
|
hash(x)
- Overrides:
object.__hash__
|
- Returns:
a new object with type S, a subtype of T
- Overrides:
object.__new__
|
helper for pickle
- Overrides:
object.__reduce__
- (inherited documentation)
|
__repr__(x)
(Representation operator)
|
|
repr(x)
- Overrides:
object.__repr__
|