diff options
author | Georg Brandl <georg@python.org> | 2007-08-15 14:27:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-08-15 14:27:07 (GMT) |
commit | 739c01d47b9118d04e5722333f0e6b4d0c8bdd9e (patch) | |
tree | f82b450d291927fc1758b96d981aa0610947b529 /Doc/lib/libstatvfs.tex | |
parent | 2d1649094402ef393ea2b128ba2c08c3937e6b93 (diff) | |
download | cpython-739c01d47b9118d04e5722333f0e6b4d0c8bdd9e.zip cpython-739c01d47b9118d04e5722333f0e6b4d0c8bdd9e.tar.gz cpython-739c01d47b9118d04e5722333f0e6b4d0c8bdd9e.tar.bz2 |
Delete the LaTeX doc tree.
Diffstat (limited to 'Doc/lib/libstatvfs.tex')
-rw-r--r-- | Doc/lib/libstatvfs.tex | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/Doc/lib/libstatvfs.tex b/Doc/lib/libstatvfs.tex deleted file mode 100644 index 2dc8933..0000000 --- a/Doc/lib/libstatvfs.tex +++ /dev/null @@ -1,55 +0,0 @@ -\section{\module{statvfs} --- - Constants used with \function{os.statvfs()}} - -\declaremodule{standard}{statvfs} -% LaTeX'ed from comments in module -\sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il} -\modulesynopsis{Constants for interpreting the result of - \function{os.statvfs()}.} - -The \module{statvfs} module defines constants so interpreting the result -if \function{os.statvfs()}, which returns a tuple, can be made without -remembering ``magic numbers.'' Each of the constants defined in this -module is the \emph{index} of the entry in the tuple returned by -\function{os.statvfs()} that contains the specified information. - - -\begin{datadesc}{F_BSIZE} -Preferred file system block size. -\end{datadesc} - -\begin{datadesc}{F_FRSIZE} -Fundamental file system block size. -\end{datadesc} - -\begin{datadesc}{F_BLOCKS} -Total number of blocks in the filesystem. -\end{datadesc} - -\begin{datadesc}{F_BFREE} -Total number of free blocks. -\end{datadesc} - -\begin{datadesc}{F_BAVAIL} -Free blocks available to non-super user. -\end{datadesc} - -\begin{datadesc}{F_FILES} -Total number of file nodes. -\end{datadesc} - -\begin{datadesc}{F_FFREE} -Total number of free file nodes. -\end{datadesc} - -\begin{datadesc}{F_FAVAIL} -Free nodes available to non-super user. -\end{datadesc} - -\begin{datadesc}{F_FLAG} -Flags. System dependent: see \cfunction{statvfs()} man page. -\end{datadesc} - -\begin{datadesc}{F_NAMEMAX} -Maximum file name length. -\end{datadesc} |