summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-07-28 16:33:45 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-07-28 16:33:45 (GMT)
commit0cec0ffc787ee969b4003d04c031d38e2c523715 (patch)
treecc896af4474d199540e76940133779e70bf400c7 /Doc
parentddc6f4748e827ba655816987215394afbf811810 (diff)
downloadcpython-0cec0ffc787ee969b4003d04c031d38e2c523715.zip
cpython-0cec0ffc787ee969b4003d04c031d38e2c523715.tar.gz
cpython-0cec0ffc787ee969b4003d04c031d38e2c523715.tar.bz2
Patch #573770: Implement lchown.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libos.tex7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index 7a63890..d5f9a34 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -641,6 +641,13 @@ and \var{gid}.
Availability: \UNIX.
\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}.
Availability: \UNIX.