From: Fred Drake Date: Thu, 20 Mar 2003 17:42:48 +0000 (+0000) Subject: - explain what a UNC path is in the makedirs() description, since X-Git-Tag: v2.2.3c1~109 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=158303a52dac65c38f1ddbf5b2e4fbf0e7ae55bb;p=thirdparty%2FPython%2Fcpython.git - explain what a UNC path is in the makedirs() description, since they're actually mentioned there --- diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index fcc172f81b38..3d0b4051bd3f 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -672,12 +672,15 @@ Availability: Macintosh, \UNIX, Windows. \begin{funcdesc}{makedirs}{path\optional{, mode}} \index{directory!creating} -Recursive directory creation function. Like \function{mkdir()}, +Recursive directory creation function.\index{directory!creating} +\index{UNC paths!and \function{os.makedirs()}} +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). +paths (only relevant on Windows systems; Universal Naming Convention +paths are those that use the `\code{\e\e host\e path}' syntax). \versionadded{1.5.2} \end{funcdesc}