From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 9 Apr 2024 21:11:07 +0000 (+0200) Subject: [3.12] gh-117360: Clearer wording in os.path.lexists() docs (GH-117679) (#117701) X-Git-Tag: v3.12.4~258 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=559b25fcc82d476bbab96cac7d67a253c4ed0ed9;p=thirdparty%2FPython%2Fcpython.git [3.12] gh-117360: Clearer wording in os.path.lexists() docs (GH-117679) (#117701) (cherry picked from commit 73906d5c908c1e0b73c5436faeff7d93698fc074) Co-authored-by: Nice Zombies Co-authored-by: Zachary Ware --- diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 6f9e0853bc89..6cb227533ebb 100644 --- a/Doc/library/os.path.rst +++ b/Doc/library/os.path.rst @@ -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`.