diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-07-26 20:00:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-26 20:00:40 (GMT) |
commit | 58af565c5085c427203ee424585a2c3ed0db4981 (patch) | |
tree | 7f752ce11cb4e4361e1bb81ebbb92bed8cf32847 | |
parent | da2097dffbf1573d34439166468012d8f79d8595 (diff) | |
download | cpython-58af565c5085c427203ee424585a2c3ed0db4981.zip cpython-58af565c5085c427203ee424585a2c3ed0db4981.tar.gz cpython-58af565c5085c427203ee424585a2c3ed0db4981.tar.bz2 |
[3.12] Document that `os.link()` is not available on Emscripten (GH-104822) (GH-107308)
Document that `os.link()` is not available on Emscripten (GH-104822)
(cherry picked from commit 737d1da0746053d515158eac5b115e8bd813f6d3)
Co-authored-by: Roman Yurchak <rth.yurchak@gmail.com>
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 55ebe7e..956eeff 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2150,7 +2150,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. |