[Python-checkins] commit of r41510 - python/branches/release24-maint/Doc/lib

reinhold.birkenfeld@python.org reinhold.birkenfeld at python.org
Tue Nov 22 20:16:03 CET 2005


Author: reinhold.birkenfeld
Date: Tue Nov 22 20:15:58 2005
New Revision: 41510

Modified:
   python/branches/release24-maint/Doc/lib/libos.tex
Log:
Add a note to os.chown that permission constants can be combined



Modified: python/branches/release24-maint/Doc/lib/libos.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libos.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libos.tex	Tue Nov 22 20:15:58 2005
@@ -733,7 +733,8 @@
 \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}


More information about the Python-checkins mailing list