diff options
author | Guido van Rossum <guido@python.org> | 1999-02-03 16:32:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-02-03 16:32:37 (GMT) |
commit | 0c9608cf1bcad32d3e7226b2743f245be231a119 (patch) | |
tree | efd89512c209faf4f161bfe0ee7ebc25adc67335 /Doc | |
parent | c256ece88c81ffc573c5a1e7f0e45e68a656ee29 (diff) | |
download | cpython-0c9608cf1bcad32d3e7226b2743f245be231a119.zip cpython-0c9608cf1bcad32d3e7226b2743f245be231a119.tar.gz cpython-0c9608cf1bcad32d3e7226b2743f245be231a119.tar.bz2 |
Portability fix for [f]statvfs() return tuple: no longer return the
f_fsid field, since it's not a scalar on all systems supporting this
call (in particular, it's a tuple of two longs on AIX). Since it's
not particularly useful, just nuke it. Adapted the doc strings too.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libos.tex | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 2fd41b7..7df3674 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -527,7 +527,7 @@ from a \ctype{stat} structure. \begin{funcdesc}{statvfs}{path} Perform a \cfunction{statvfs()} system call on the given path. The -return value is a tuple of 11 integers giving the most common +return value is a tuple of 10 integers giving the most common members of the \ctype{statvfs} structure, in the order \code{f_bsize}, \code{f_frsize}, @@ -537,7 +537,6 @@ members of the \ctype{statvfs} structure, in the order \code{f_files}, \code{f_ffree}, \code{f_favail}, -\code{f_fsid}, \code{f_flag}, \code{f_namemax}. Availability: \UNIX{}. |