]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-117360: Clearer wording in os.path.lexists() docs (#117679)
authorNice Zombies <nineteendo19d0@gmail.com>
Tue, 9 Apr 2024 21:00:41 +0000 (23:00 +0200)
committerGitHub <noreply@github.com>
Tue, 9 Apr 2024 21:00:41 +0000 (23:00 +0200)
Co-authored-by: Zachary Ware <zach@python.org>
Doc/library/os.path.rst

index dcc877da0b3122ea5caa213b29d31e318b322267..fcf4b6d68e018ce3a934f01b8b88b905ee00eb21 100644 (file)
@@ -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`.