[Python-checkins] [3.11] Document that `os.link()` is not available on Emscripten (GH-104822) (GH-107309)

brettcannon webhook-mailer at python.org
Wed Jul 26 16:00:17 EDT 2023


https://github.com/python/cpython/commit/35aa6b80a6018ea12ea54dfb97da46b70c1cc81e
commit: 35aa6b80a6018ea12ea54dfb97da46b70c1cc81e
branch: 3.11
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: brettcannon <brett at python.org>
date: 2023-07-26T13:00:13-07:00
summary:

[3.11] Document that `os.link()` is not available on Emscripten (GH-104822) (GH-107309)

Document that `os.link()` is not available on Emscripten (GH-104822)
(cherry picked from commit 737d1da0746053d515158eac5b115e8bd813f6d3)

Co-authored-by: Roman Yurchak <rth.yurchak at gmail.com>

files:
M Doc/library/os.rst

diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index dcb4e7d3ab259..56e34a3df8761 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -2036,7 +2036,7 @@ features:
 
    .. audit-event:: os.link src,dst,src_dir_fd,dst_dir_fd os.link
 
-   .. availability:: Unix, Windows.
+   .. availability:: Unix, Windows, not Emscripten.
 
    .. versionchanged:: 3.2
       Added Windows support.



More information about the Python-checkins mailing list