gh-117360: Clearer wording in os.path.lexists() docs (#117679)

Co-authored-by: Zachary Ware <zach@python.org>
This commit is contained in:
Nice Zombies 2024-04-09 23:00:41 +02:00 committed by GitHub
parent a05068db0c
commit 73906d5c90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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