From: Georg Brandl Date: Tue, 22 Nov 2005 20:14:30 +0000 (+0000) Subject: Bug #1357604: os.makedirs handles UNC paths X-Git-Tag: v2.4.3c1~203 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62efb93c727a4dec42bd9326ae74cf1a6800dc0b;p=thirdparty%2FPython%2Fcpython.git Bug #1357604: os.makedirs handles UNC paths --- diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index b64fab7725cb..e5c52a514b92 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -855,10 +855,9 @@ 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). This function does not properly handle UNC -paths (only relevant on Windows systems; Universal Naming Convention -paths are those that use the `\code{\e\e host\e path}' syntax). +is \code{0777} (octal). \versionadded{1.5.2} +\versionchanged[This function now handles UNC paths correctly]{2.3} \end{funcdesc} \begin{funcdesc}{pathconf}{path, name}