[Python-checkins] python/dist/src/Doc/lib libos.tex, 1.146.2.9, 1.146.2.10

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Mon Jul 18 10:17:11 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5439/Doc/lib

Modified Files:
      Tag: release24-maint
	libos.tex 
Log Message:
backport bug [ 755617 ] os module: Need a better description of "mode"



Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.146.2.9
retrieving revision 1.146.2.10
diff -u -d -r1.146.2.9 -r1.146.2.10
--- libos.tex	17 Jul 2005 21:10:07 -0000	1.146.2.9
+++ libos.tex	18 Jul 2005 08:17:08 -0000	1.146.2.10
@@ -751,6 +751,11 @@
   \item \code{S_IXOTH}
 \end{itemize}
 Availability: Macintosh, \UNIX, Windows.
+
+\note{Although Windows supports \function{chmod()}, you can only 
+set the file's read-only flag with it (via the \code{S_IWRITE} 
+and \code{S_IREAD} constants or a corresponding integer value). 
+All other bits are ignored.}
 \end{funcdesc}
 
 \begin{funcdesc}{chown}{path, uid, gid}



More information about the Python-checkins mailing list