diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-07-28 16:33:45 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-07-28 16:33:45 (GMT) |
commit | 0cec0ffc787ee969b4003d04c031d38e2c523715 (patch) | |
tree | cc896af4474d199540e76940133779e70bf400c7 /Doc/lib | |
parent | ddc6f4748e827ba655816987215394afbf811810 (diff) | |
download | cpython-0cec0ffc787ee969b4003d04c031d38e2c523715.zip cpython-0cec0ffc787ee969b4003d04c031d38e2c523715.tar.gz cpython-0cec0ffc787ee969b4003d04c031d38e2c523715.tar.bz2 |
Patch #573770: Implement lchown.
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libos.tex | 7 |
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. |