mirror of
https://github.com/python/cpython.git
synced 2025-11-25 04:34:37 +00:00
This commit is contained in:
parent
d3f61a2de6
commit
ae882f7984
11 changed files with 57 additions and 4 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue