[Python-checkins] python/dist/src/Doc/lib libposixpath.tex, 1.40.2.2, 1.40.2.3

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Wed Sep 14 22:42:07 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28425/Doc/lib

Modified Files:
      Tag: release24-maint
	libposixpath.tex 
Log Message:
backport bug [ 1274828 ] splitunc not documented



Index: libposixpath.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libposixpath.tex,v
retrieving revision 1.40.2.2
retrieving revision 1.40.2.3
diff -u -d -r1.40.2.2 -r1.40.2.3
--- libposixpath.tex	24 Aug 2005 07:27:00 -0000	1.40.2.2
+++ libposixpath.tex	14 Sep 2005 20:42:04 -0000	1.40.2.3
@@ -234,6 +234,15 @@
 at most one period.
 \end{funcdesc}
 
+\begin{funcdesc}{splitunc}{path}
+Split the pathname \var{path} into a pair \code{(\var{unc}, \var{rest})}
+so that \var{unc} is the UNC mount point (such as \code{r'\e\e host\e mount'}),
+if present, and \var{rest} the rest of the path (such as 
+\code{r'\e path\e file.ext'}).  For paths containing drive letters, \var{unc}
+will always be the empty string.
+Availability:  Windows.
+\end{funcdesc}
+
 \begin{funcdesc}{walk}{path, visit, arg}
 Calls the function \var{visit} with arguments
 \code{(\var{arg}, \var{dirname}, \var{names})} for each directory in the



More information about the Python-checkins mailing list