diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-04-09 21:11:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 21:11:07 (GMT) |
commit | 559b25fcc82d476bbab96cac7d67a253c4ed0ed9 (patch) | |
tree | 266ecdde593b19a16a6eddb5080a5f76df12a403 | |
parent | e46fd7257a9329cf99d290b0ee50b3eb8290ee1d (diff) | |
download | cpython-559b25fcc82d476bbab96cac7d67a253c4ed0ed9.zip cpython-559b25fcc82d476bbab96cac7d67a253c4ed0ed9.tar.gz cpython-559b25fcc82d476bbab96cac7d67a253c4ed0ed9.tar.bz2 |
[3.12] gh-117360: Clearer wording in os.path.lexists() docs (GH-117679) (#117701)
(cherry picked from commit 73906d5c908c1e0b73c5436faeff7d93698fc074)
Co-authored-by: Nice Zombies <nineteendo19d0@gmail.com>
Co-authored-by: Zachary Ware <zach@python.org>
-rw-r--r-- | Doc/library/os.path.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst index 6f9e085..6cb2275 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`. |