summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2005-12-17 17:14:12 +0000
committerGeorg Brandl <georg@python.org>2005-12-17 17:14:12 +0000
commiteb86c1c485b4fc9d16ffb7367b83ca09b82a900c (patch)
tree86b86d83bce2cb5a53f2b84c4ed8a161ecdc0d9d
parentc419fe48a8054ff56cd2641d7218de28fc29a12b (diff)
downloadcpython-eb86c1c485b4fc9d16ffb7367b83ca09b82a900c.tar.gz
Bug #1106572: clarify os.makedirs docs wrt umask
-rw-r--r--Doc/lib/libos.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index 50dad083d8..04acce613d 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}