diff options
author | Nice Zombies <nineteendo19d0@gmail.com> | 2024-04-09 21:00:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 21:00:41 (GMT) |
commit | 73906d5c908c1e0b73c5436faeff7d93698fc074 (patch) | |
tree | ad756e9619765773701174f071478165e9c789fa | |
parent | a05068db0cb43337d20a936d919b9d88c35d9818 (diff) | |
download | cpython-73906d5c908c1e0b73c5436faeff7d93698fc074.zip cpython-73906d5c908c1e0b73c5436faeff7d93698fc074.tar.gz cpython-73906d5c908c1e0b73c5436faeff7d93698fc074.tar.bz2 |
gh-117360: Clearer wording in os.path.lexists() docs (#117679)
Co-authored-by: Zachary Ware <zach@python.org>
-rw-r--r-- | Doc/library/os.path.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index dcc877d..fcf4b6d 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -145,7 +145,7 @@ the :mod:`glob` module.) .. function:: lexists(path) - Return ``True`` if *path* refers to an existing path. Returns ``True`` for + Return ``True`` if *path* refers to an existing path, including broken symbolic links. Equivalent to :func:`exists` on platforms lacking :func:`os.lstat`. |