diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 13:38:28 (GMT) |
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-31 13:38:28 (GMT) |
| commit | f3edea5b9011b46a6c0a828c526d8687d26d873b (patch) | |
| tree | 8ff6e587769a2769c74dfacd015bea7753968e9d | |
| parent | b96152c42ef7bab052ae165ccacd0c3d6b4f7eed (diff) | |
| download | cpython-f3edea5b9011b46a6c0a828c526d8687d26d873b.zip cpython-f3edea5b9011b46a6c0a828c526d8687d26d873b.tar.gz cpython-f3edea5b9011b46a6c0a828c526d8687d26d873b.tar.bz2 | |
Use the name (path) specified in the parameter list
| -rw-r--r-- | Doc/lib/libposixpath.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libposixpath.tex b/Doc/lib/libposixpath.tex index b83eff4..66fbf14 100644 --- a/Doc/lib/libposixpath.tex +++ b/Doc/lib/libposixpath.tex @@ -66,7 +66,7 @@ unchanged. \end{funcdesc} \begin{funcdesc}{getatime}{path} -Return the time of last access of \var{filename}. The return +Return the time of last access of \var{path}. The return value is a number giving the number of seconds since the epoch (see the \refmodule{time} module). Raise \exception{os.error} if the file does not exist or is inaccessible. @@ -75,7 +75,7 @@ not exist or is inaccessible. \end{funcdesc} \begin{funcdesc}{getmtime}{path} -Return the time of last modification of \var{filename}. The return +Return the time of last modification of \var{path}. The return value is a number giving the number of seconds since the epoch (see the \refmodule{time} module). Raise \exception{os.error} if the file does not exist or is inaccessible. @@ -84,7 +84,7 @@ not exist or is inaccessible. \end{funcdesc} \begin{funcdesc}{getctime}{path} -Return the time of creation of \var{filename}. The return +Return the time of creation of \var{path}. The return value is a number giving the number of seconds since the epoch (see the \refmodule{time} module). Raise \exception{os.error} if the file does not exist or is inaccessible. @@ -92,7 +92,7 @@ not exist or is inaccessible. \end{funcdesc} \begin{funcdesc}{getsize}{path} -Return the size, in bytes, of \var{filename}. Raise +Return the size, in bytes, of \var{path}. Raise \exception{os.error} if the file does not exist or is inaccessible. \versionadded{1.5.2} \end{funcdesc} |
