[Python-checkins] CVS: python/dist/src/Doc/lib libos.tex,1.64,1.65 libposixpath.tex,1.19,1.20

Fred L. Drake fdrake@users.sourceforge.net
Fri, 28 Sep 2001 09:14:20 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv30006/lib

Modified Files:
	libos.tex libposixpath.tex 
Log Message:
Added note about non-support of UNC paths on Windows.
This fixes SF bug #465447.


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -d -r1.64 -r1.65
*** libos.tex	2001/09/11 19:56:51	1.64
--- libos.tex	2001/09/28 16:14:18	1.65
***************
*** 635,639 ****
  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).
  \versionadded{1.5.2}
  \end{funcdesc}
--- 635,640 ----
  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).
  \versionadded{1.5.2}
  \end{funcdesc}

Index: libposixpath.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libposixpath.tex,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** libposixpath.tex	2001/09/17 15:16:09	1.19
--- libposixpath.tex	2001/09/28 16:14:18	1.20
***************
*** 8,11 ****
--- 8,15 ----
  \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}