From 8f2c1941e7af760c643a4eaac51c267e5c28a450 Mon Sep 17 00:00:00 2001 From: nineteendo Date: Tue, 9 Apr 2024 17:04:15 +0200 Subject: [PATCH] Improve os.path.lexists documentation --- 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`.