]> granicus.if.org Git - python/commitdiff
Added note about non-support of UNC paths on Windows.
authorFred Drake <fdrake@acm.org>
Fri, 28 Sep 2001 16:14:18 +0000 (16:14 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 28 Sep 2001 16:14:18 +0000 (16:14 +0000)
This fixes SF bug #465447.

Doc/lib/libos.tex
Doc/lib/libposixpath.tex

index 1c3a584bf8260189aa5a9f29e8d34c4f39f083c7..85355a5ee9c6e1a31b676d547300922dc0381533 100644 (file)
@@ -634,7 +634,8 @@ Recursive directory creation function.  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).
+is \code{0777} (octal).  This function does not properly handle UNC
+paths (only relevant on Windows systems).
 \versionadded{1.5.2}
 \end{funcdesc}
 
index 9cd1a58fd73c641b5ff3390910fc701910c25d72..bc26ddd850d57e1d362311352402289634900559 100644 (file)
@@ -7,6 +7,10 @@
 This module implements some useful functions on pathnames.
 \index{path!operations}
 
+\strong{Warning:}  On Windows, many of these functions do not properly
+support UNC pathnames.  \function{splitunc()} and \function{ismount()}
+do handle them correctly.
+
 
 \begin{funcdesc}{abspath}{path}
 Return a normalized absolutized version of the pathname \var{path}.