From 73906d5c908c1e0b73c5436faeff7d93698fc074 Mon Sep 17 00:00:00 2001 From: Nice Zombies Date: Tue, 9 Apr 2024 23:00:41 +0200 Subject: [PATCH] gh-117360: Clearer wording in os.path.lexists() docs (#117679) Co-authored-by: Zachary Ware --- Doc/library/os.path.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index dcc877da0b3122..fcf4b6d68e018c 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`.