[3.12] gh-117360: Clearer wording in os.path.lexists() docs (GH-117679) (#117701)

(cherry picked from commit 73906d5c90)

Co-authored-by: Nice Zombies <nineteendo19d0@gmail.com>
Co-authored-by: Zachary Ware <zach@python.org>
This commit is contained in:
Miss Islington (bot) 2024-04-09 23:11:07 +02:00 committed by GitHub
parent e46fd7257a
commit 559b25fcc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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`.