]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
- explain what a UNC path is in the makedirs() description, since
authorFred Drake <fdrake@acm.org>
Thu, 20 Mar 2003 17:42:48 +0000 (17:42 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 20 Mar 2003 17:42:48 +0000 (17:42 +0000)
  they're actually mentioned there

Doc/lib/libos.tex

index fcc172f81b38ee49e01d4ed6d12b31b3b9c82a31..3d0b4051bd3feb1d0b3669f6be997996aeabf5db 100644 (file)
@@ -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}