From: Nice Zombies Date: Tue, 9 Apr 2024 21:00:41 +0000 (+0200) Subject: gh-117360: Clearer wording in os.path.lexists() docs (#117679) X-Git-Tag: v3.13.0b1~500 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=73906d5c908c1e0b73c5436faeff7d93698fc074;p=thirdparty%2FPython%2Fcpython.git gh-117360: Clearer wording in os.path.lexists() docs (#117679) Co-authored-by: Zachary Ware --- diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index dcc877da0b31..fcf4b6d68e01 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`.