From 11ffdd14679be20dd3e499d2d013e7317cf83555 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Tue, 21 Oct 2025 17:03:06 +0100 Subject: [PATCH 1/2] Commit --- Doc/library/winreg.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Doc/library/winreg.rst b/Doc/library/winreg.rst index 83c49876d267db..09442d92a64cff 100644 --- a/Doc/library/winreg.rst +++ b/Doc/library/winreg.rst @@ -14,6 +14,8 @@ integer as the registry handle, a :ref:`handle object ` is used to ensure that the handles are closed correctly, even if the programmer neglects to explicitly close them. +.. availability:: Windows. + .. _exception-changed: .. versionchanged:: 3.3 From 0f808830e3488fc091739f714c4c10159d748584 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Tue, 21 Oct 2025 17:13:31 +0100 Subject: [PATCH 2/2] Add msvcrt and winsound --- Doc/library/msvcrt.rst | 2 ++ Doc/library/winsound.rst | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Doc/library/msvcrt.rst b/Doc/library/msvcrt.rst index 327cc3602b1a77..a2c5e375d2cc4f 100644 --- a/Doc/library/msvcrt.rst +++ b/Doc/library/msvcrt.rst @@ -22,6 +22,8 @@ api. The normal API deals only with ASCII characters and is of limited use for internationalized applications. The wide char API should be used where ever possible. +.. availability:: Windows. + .. versionchanged:: 3.3 Operations in this module now raise :exc:`OSError` where :exc:`IOError` was raised. diff --git a/Doc/library/winsound.rst b/Doc/library/winsound.rst index 925984c3cdb0cb..93c0c025982076 100644 --- a/Doc/library/winsound.rst +++ b/Doc/library/winsound.rst @@ -13,6 +13,8 @@ The :mod:`winsound` module provides access to the basic sound-playing machinery provided by Windows platforms. It includes functions and several constants. +.. availability:: Windows. + .. function:: Beep(frequency, duration)