[Python-checkins] commit of r41736 - python/trunk/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:42 2005
New Revision: 41736

Modified:
   python/trunk/Doc/lib/libos.tex
Log:
Bug #1373197: note that os.makedirs does not work with '..'



Modified: python/trunk/Doc/lib/libos.tex
==============================================================================
--- python/trunk/Doc/lib/libos.tex	(original)
+++ python/trunk/Doc/lib/libos.tex	Sat Dec 17 18:47:42 2005
@@ -877,6 +877,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