From 737d1da0746053d515158eac5b115e8bd813f6d3 Mon Sep 17 00:00:00 2001 From: Roman Yurchak Date: Wed, 26 Jul 2023 18:38:59 +0000 Subject: [PATCH] Document that `os.link()` is not available on Emscripten (GH-104822) --- Doc/library/os.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/os.rst b/Doc/library/os.rst index bbf227aab64..8b4e7649bea 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.