[Python-checkins] python/dist/src/Doc/lib libposixpath.tex,1.31,1.32

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Tue, 31 Dec 2002 05:38:31 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv15881/Doc/lib

Modified Files:
	libposixpath.tex 
Log Message:
Use the name (path) specified in the parameter list

Index: libposixpath.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libposixpath.tex,v
retrieving revision 1.31
retrieving revision 1.32
diff -C2 -d -r1.31 -r1.32
*** libposixpath.tex	31 Dec 2002 13:11:53 -0000	1.31
--- libposixpath.tex	31 Dec 2002 13:38:28 -0000	1.32
***************
*** 67,71 ****
  
  \begin{funcdesc}{getatime}{path}
! Return the time of last access of \var{filename}.  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
--- 67,71 ----
  
  \begin{funcdesc}{getatime}{path}
! 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
***************
*** 76,80 ****
  
  \begin{funcdesc}{getmtime}{path}
! Return the time of last modification of \var{filename}.  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
--- 76,80 ----
  
  \begin{funcdesc}{getmtime}{path}
! 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
***************
*** 85,89 ****
  
  \begin{funcdesc}{getctime}{path}
! Return the time of creation of \var{filename}.  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
--- 85,89 ----
  
  \begin{funcdesc}{getctime}{path}
! 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
***************
*** 93,97 ****
  
  \begin{funcdesc}{getsize}{path}
! Return the size, in bytes, of \var{filename}.  Raise
  \exception{os.error} if the file does not exist or is inaccessible.
  \versionadded{1.5.2}
--- 93,97 ----
  
  \begin{funcdesc}{getsize}{path}
! 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}