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