diff options
author | Georg Brandl <georg@python.org> | 2005-11-22 19:15:27 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-11-22 19:15:27 (GMT) |
commit | a6ba60232abc614f5d7646fca723d81d5290a96f (patch) | |
tree | b59abb3dcc78b4736072a7cadffef3d80ceb8f24 /Doc | |
parent | 841d25ee664d7e77caa6169401f9dff696c738da (diff) | |
download | cpython-a6ba60232abc614f5d7646fca723d81d5290a96f.zip cpython-a6ba60232abc614f5d7646fca723d81d5290a96f.tar.gz cpython-a6ba60232abc614f5d7646fca723d81d5290a96f.tar.bz2 |
Add a note to os.chown that permission constants can be combined
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libos.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 08c1aad..a3918e8 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -753,7 +753,8 @@ Availability: Macintosh, \UNIX. \begin{funcdesc}{chmod}{path, mode} Change the mode of \var{path} to the numeric \var{mode}. \var{mode} may take one of the following values -(as defined in the \module{stat} module): +(as defined in the \module{stat} module) or bitwise or-ed +combinations of them: \begin{itemize} \item \code{S_ISUID} \item \code{S_ISGID} |