diff options
author | Georg Brandl <georg@python.org> | 2005-12-17 17:14:12 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-12-17 17:14:12 (GMT) |
commit | c1d2f7b6ad3fbd456f3b3a09a493e14f8880bc6c (patch) | |
tree | 637933e18d43dde007256b1f634facfa502d32ee /Doc/lib | |
parent | b80775ecf1ef62d6e101a1048dc2c2e2e3cb5e6d (diff) | |
download | cpython-c1d2f7b6ad3fbd456f3b3a09a493e14f8880bc6c.zip cpython-c1d2f7b6ad3fbd456f3b3a09a493e14f8880bc6c.tar.gz cpython-c1d2f7b6ad3fbd456f3b3a09a493e14f8880bc6c.tar.bz2 |
Bug #1106572: clarify os.makedirs docs wrt umask
Diffstat (limited to 'Doc/lib')
-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 50dad08..04acce6 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -875,7 +875,8 @@ Like \function{mkdir()}, but makes all intermediate-level directories needed to contain the leaf directory. Throws an \exception{error} exception if the leaf directory already exists or cannot be created. The default \var{mode} -is \code{0777} (octal). +is \code{0777} (octal). On some systems, \var{mode} is ignored. +Where it is used, the current umask value is first masked out. \versionadded{1.5.2} \versionchanged[This function now handles UNC paths correctly]{2.3} \end{funcdesc} |