diff options
author | Georg Brandl <georg@python.org> | 2006-04-28 16:36:55 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-04-28 16:36:55 (GMT) |
commit | 677800723a7f2d31bf6b72cc8dd65314781a5f72 (patch) | |
tree | ae3eec5a809a3d685875b6a6d3a67ad281b72025 /Doc/lib/libposixpath.tex | |
parent | 314acacb52f690cfe0099a2670e51e7db5139859 (diff) | |
download | cpython-677800723a7f2d31bf6b72cc8dd65314781a5f72.zip cpython-677800723a7f2d31bf6b72cc8dd65314781a5f72.tar.gz cpython-677800723a7f2d31bf6b72cc8dd65314781a5f72.tar.bz2 |
Bug #1475009: clarify ntpath.join behavior with absolute components
Diffstat (limited to 'Doc/lib/libposixpath.tex')
-rw-r--r-- | Doc/lib/libposixpath.tex | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/lib/libposixpath.tex b/Doc/lib/libposixpath.tex index cea963e..9f0de1f 100644 --- a/Doc/lib/libposixpath.tex +++ b/Doc/lib/libposixpath.tex @@ -146,8 +146,9 @@ should detect mount points for all \UNIX{} and \POSIX{} variants. \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 |