[Python-checkins] python/dist/src/Doc/lib libos.tex,1.92,1.93

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sun, 28 Jul 2002 09:33:47 -0700


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

Modified Files:
	libos.tex 
Log Message:
Patch #573770: Implement lchown.


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.92
retrieving revision 1.93
diff -C2 -d -r1.92 -r1.93
*** libos.tex	24 Jul 2002 15:32:25 -0000	1.92
--- libos.tex	28 Jul 2002 16:33:45 -0000	1.93
***************
*** 642,645 ****
--- 642,652 ----
  \end{funcdesc}
  
+ \begin{funcdesc}{lchown}{path, uid, gid}
+ Change the owner and group id of \var{path} to the numeric \var{uid}
+ and gid. This function will not follow symbolic links.
+ Availability: \UNIX.
+ \versionadded{2.3}
+ \end{funcdesc}
+ 
  \begin{funcdesc}{link}{src, dst}
  Create a hard link pointing to \var{src} named \var{dst}.