]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-117360: Clearer wording in os.path.lexists() docs (GH-117679) (#117701)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 9 Apr 2024 21:11:07 +0000 (23:11 +0200)
committerGitHub <noreply@github.com>
Tue, 9 Apr 2024 21:11:07 +0000 (21:11 +0000)
(cherry picked from commit 73906d5c908c1e0b73c5436faeff7d93698fc074)

Co-authored-by: Nice Zombies <nineteendo19d0@gmail.com>
Co-authored-by: Zachary Ware <zach@python.org>
Doc/library/os.path.rst

index 6f9e0853bc8947ee2c860da599e323151b6066c6..6cb227533ebb94276c8ea880ff9e88a6b2618df8 100644 (file)
@@ -144,7 +144,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`.