[Python-checkins] python/dist/src/Doc/lib libos.tex,1.115,1.116

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


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

Modified Files:
	libos.tex 
Log Message:
- explain what a UNC path is in the makedirs() description, since
  they're actually mentioned there
- remove some extraneous paragraph separations
- \versionadded --> \versionchanged in one place


Index: libos.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libos.tex,v
retrieving revision 1.115
retrieving revision 1.116
diff -C2 -d -r1.115 -r1.116
*** libos.tex	3 Mar 2003 17:32:12 -0000	1.115
--- libos.tex	20 Mar 2003 17:39:38 -0000	1.116
***************
*** 712,716 ****
  Availability: Macintosh, \UNIX, Windows.
  
! \versionadded[On Windows NT/2k/XP and Unix, if \var{path} is a Unicode
  object, the result will be a list of Unicode objects.]{2.3}
  \end{funcdesc}
--- 712,716 ----
  Availability: Macintosh, \UNIX, Windows.
  
! \versionchanged[On Windows NT/2k/XP and Unix, if \var{path} is a Unicode
  object, the result will be a list of Unicode objects.]{2.3}
  \end{funcdesc}
***************
*** 743,747 ****
  defines the newly created device special file (probably using
  \function{os.makedev()}), otherwise it is ignored.
- 
  \versionadded{2.3}
  \end{funcdesc}
--- 743,746 ----
***************
*** 749,753 ****
  \begin{funcdesc}{major}{device}
  Extracts a device major number from a raw device number.
- 
  \versionadded{2.3}
  \end{funcdesc}
--- 748,751 ----
***************
*** 755,759 ****
  \begin{funcdesc}{minor}{device}
  Extracts a device minor number from a raw device number.
- 
  \versionadded{2.3}
  \end{funcdesc}
--- 753,756 ----
***************
*** 761,765 ****
  \begin{funcdesc}{makedev}{major, minor}
  Composes a raw device number from the major and minor device numbers.
- 
  \versionadded{2.3}
  \end{funcdesc}
--- 758,761 ----
***************
*** 774,784 ****
  
  \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}
--- 770,782 ----
  
  \begin{funcdesc}{makedirs}{path\optional{, mode}}
! 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}