[Python-checkins] r45782 - python/branches/release24-maint/Doc/lib/libposixpath.tex

georg.brandl python-checkins at python.org
Fri Apr 28 18:36:58 CEST 2006


Author: georg.brandl
Date: Fri Apr 28 18:36:58 2006
New Revision: 45782

Modified:
   python/branches/release24-maint/Doc/lib/libposixpath.tex
Log:
Bug #1475009: clarify ntpath.join behavior with absolute components
 (backport from rev. 45781)

Modified: python/branches/release24-maint/Doc/lib/libposixpath.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libposixpath.tex	(original)
+++ python/branches/release24-maint/Doc/lib/libposixpath.tex	Fri Apr 28 18:36:58 2006
@@ -146,8 +146,9 @@
 \end{funcdesc}
 
 \begin{funcdesc}{join}{path1\optional{, path2\optional{, ...}}}
-Joins one or more path components intelligently.  If any component is
-an absolute path, all previous components are thrown away, and joining
+Join one or more path components intelligently.  If any component is
+an absolute path, all previous components (on Windows, including the
+previous drive letter, if there was one) are thrown away, and joining
 continues.  The return value is the concatenation of \var{path1}, and
 optionally \var{path2}, etc., with exactly one directory separator
 (\code{os.sep}) inserted between components, unless \var{path2} is


More information about the Python-checkins mailing list