diff options
author | Guido van Rossum <guido@python.org> | 1996-06-26 19:23:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-06-26 19:23:26 (GMT) |
commit | 7c2fdda0b37ad85f251a176281e6fa10fffce2c5 (patch) | |
tree | bbf017cd607a51344d9cba06a6d09fc8c57be3fb /Doc/libppath.tex | |
parent | 1e8b63eb887344ce2fe06b580eecbfba5a5be3dd (diff) | |
download | cpython-7c2fdda0b37ad85f251a176281e6fa10fffce2c5.zip cpython-7c2fdda0b37ad85f251a176281e6fa10fffce2c5.tar.gz cpython-7c2fdda0b37ad85f251a176281e6fa10fffce2c5.tar.bz2 |
Better and correct words for split().
Diffstat (limited to 'Doc/libppath.tex')
-rw-r--r-- | Doc/libppath.tex | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Doc/libppath.tex b/Doc/libppath.tex index 0d3bbe5..5c6bf77 100644 --- a/Doc/libppath.tex +++ b/Doc/libppath.tex @@ -110,16 +110,16 @@ Raise an exception if a stat call on either pathname fails. \end{funcdesc} \begin{funcdesc}{split}{p} -Split the pathname \var{p} in a pair \code{(\var{head}, \var{tail})}, where -\var{tail} is the last pathname component and \var{head} is -everything leading up to that. If \var{p} ends in a slash (except if -it is the root), the trailing slash is removed and the operation -applied to the result; otherwise, \code{join(\var{head}, \var{tail})} equals -\var{p}. The \var{tail} part never contains a slash. Some boundary -cases:\ if \var{p} is the root, \var{head} equals \var{p} and -\var{tail} is empty; if \var{p} is empty, both \var{head} and -\var{tail} are empty; if \var{p} contains no slash, \var{head} is -empty and \var{tail} equals \var{p}. +Split the pathname \var{p} in a pair \code{(\var{head}, \var{tail})}, +where \var{tail} is the last pathname component and \var{head} is +everything leading up to that. The \var{tail} part will never contain +a slash; if \var{p} ends in a slash, \var{tail} will be empty. If +there is no slash in \var{p}, \var{head} will be empty. If \var{p} is +empty, both \var{head} and \var{tail} are empty. Trailing slashes are +stripped from \var{head} unless it is the root (one or more slashes +only). In nearly all cases, \code{join(\var{head}, \var{tail})} +equals \var{p} (the only exception being when there were multiple +slashes separating \var{head} from \var{tail}). \end{funcdesc} \begin{funcdesc}{splitext}{p} |