[Python-checkins] commit of r41737 - python/branches/release24-maint/Doc/lib/libos.tex
reinhold.birkenfeld
python-checkins at python.org
Sat Dec 17 18:47:45 CET 2005
Author: reinhold.birkenfeld
Date: Sat Dec 17 18:47:43 2005
New Revision: 41737
Modified:
python/branches/release24-maint/Doc/lib/libos.tex
Log:
Bug #1373197: note that os.makedirs does not work with '..'
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 Sat Dec 17 18:47:43 2005
@@ -857,6 +857,8 @@
directory already exists or cannot be created. The default \var{mode}
is \code{0777} (octal). On some systems, \var{mode} is ignored.
Where it is used, the current umask value is first masked out.
+\note{\function{makedirs()} will become confused if the path elements
+to create include \var{os.pardir}.}
\versionadded{1.5.2}
\versionchanged[This function now handles UNC paths correctly]{2.3}
\end{funcdesc}
More information about the Python-checkins
mailing list