diff options
author | Johannes Gijsbers <jlg@dds.nl> | 2004-08-30 10:19:56 (GMT) |
---|---|---|
committer | Johannes Gijsbers <jlg@dds.nl> | 2004-08-30 10:19:56 (GMT) |
commit | ae882f798435266b41a9c8966562102345a3eda5 (patch) | |
tree | 56f865bf36c127b6702fa53a5ad72daca0fa6570 /Doc/lib/libposixpath.tex | |
parent | d3f61a2de6a9664dde5f98b5d0acdef7a73948dc (diff) | |
download | cpython-ae882f798435266b41a9c8966562102345a3eda5.zip cpython-ae882f798435266b41a9c8966562102345a3eda5.tar.gz cpython-ae882f798435266b41a9c8966562102345a3eda5.tar.bz2 |
Patch #941486: add os.path.lexists(). Also fix bug #940578 by using lexists in glob.glob.
Diffstat (limited to 'Doc/lib/libposixpath.tex')
-rw-r--r-- | Doc/lib/libposixpath.tex | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/lib/libposixpath.tex b/Doc/lib/libposixpath.tex index e79df3e..066a961 100644 --- a/Doc/lib/libposixpath.tex +++ b/Doc/lib/libposixpath.tex @@ -43,6 +43,15 @@ half of the pair returned by \code{split(\var{path})}. \begin{funcdesc}{exists}{path} Return \code{True} if \var{path} refers to an existing path. +Returns \code{False} for broken symbolic links. +\end{funcdesc} + +\begin{funcdesc}{lexists}{path} +Return \code{True} if \var{path} refers to an existing path. +Returns \code{True} for broken symbolic links. +Equivalent to \function{exists()} on platforms lacking +\function{os.lstat()}. +\versionadded{2.4} \end{funcdesc} \begin{funcdesc}{expanduser}{path} |