diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-16 00:42:57 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-16 00:42:57 (GMT) |
commit | acbb786596ee451af79fc7515a15d1d1ae4ed867 (patch) | |
tree | c3c5e6f8bb9b19b2e81d5f910bc3889703afbff9 /Doc/library/os.rst | |
parent | 8ae3e055a51e4cddce90d0faad79ad27e21942c2 (diff) | |
download | cpython-acbb786596ee451af79fc7515a15d1d1ae4ed867.zip cpython-acbb786596ee451af79fc7515a15d1d1ae4ed867.tar.gz cpython-acbb786596ee451af79fc7515a15d1d1ae4ed867.tar.bz2 |
Remove the statvfs module.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 951474f..551424d 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1074,15 +1074,6 @@ Files and Directories :attr:`f_bavail`, :attr:`f_files`, :attr:`f_ffree`, :attr:`f_favail`, :attr:`f_flag`, :attr:`f_namemax`. Availability: Unix. - .. index:: module: statvfs - - For backward compatibility, the return value is also accessible as a tuple whose - values correspond to the attributes, in the order given above. The standard - module :mod:`statvfs` defines constants that are useful for extracting - information from a :ctype:`statvfs` structure when accessing it as a sequence; - this remains useful when writing code that needs to work with versions of Python - that don't support accessing the fields as attributes. - .. function:: symlink(src, dst) |