[Python-checkins] python/dist/src/Doc/lib libos.tex,1.74.2.1.2.12,1.74.2.1.2.13

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Thu, 20 Mar 2003 09:42:54 -0800


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

Modified Files:
      Tag: release22-maint
	libos.tex 
Log Message:
- explain what a UNC path is in the makedirs() description, since
  they're actually mentioned there


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.74.2.1.2.12
retrieving revision 1.74.2.1.2.13
diff -C2 -d -r1.74.2.1.2.12 -r1.74.2.1.2.13
*** libos.tex	14 Feb 2003 06:46:24 -0000	1.74.2.1.2.12
--- libos.tex	20 Mar 2003 17:42:48 -0000	1.74.2.1.2.13
***************
*** 673,682 ****
  \begin{funcdesc}{makedirs}{path\optional{, mode}}
  \index{directory!creating}
! 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).  This function does not properly handle UNC
! paths (only relevant on Windows systems).
  \versionadded{1.5.2}
  \end{funcdesc}
--- 673,685 ----
  \begin{funcdesc}{makedirs}{path\optional{, mode}}
  \index{directory!creating}
! 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; Universal Naming Convention
! paths are those that use the `\code{\e\e host\e path}' syntax).
  \versionadded{1.5.2}
  \end{funcdesc}