Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-139707: Specify winreg, msvcrt and winsound module availabil…
…ity in docs (GH-140429)

(cherry picked from commit 13fa313)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
  • Loading branch information
StanFromIreland authored and miss-islington committed Nov 10, 2025
commit 672471e0333b21879ba932c490717f5c1590a28c
2 changes: 2 additions & 0 deletions Doc/library/msvcrt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 2 additions & 0 deletions Doc/library/winreg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ integer as the registry handle, a :ref:`handle object <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
Expand Down
2 changes: 2 additions & 0 deletions Doc/library/winsound.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Loading