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
2 changes: 2 additions & 0 deletions Doc/library/msvcrt.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>

**Source code:** :source:`PC/msvcrtmodule.c`

--------------

These functions provide access to some useful capabilities on Windows platforms.
Expand Down
6 changes: 4 additions & 2 deletions Doc/library/winreg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

.. sectionauthor:: Mark Hammond <MarkH@ActiveState.com>

**Source code:** :source:`PC/winreg.c`

--------------

These functions expose the Windows registry API to Python. Instead of using an
Expand All @@ -23,7 +25,7 @@ to explicitly close them.
.. _functions:

Functions
------------------
---------

This module offers the following functions:

Expand Down Expand Up @@ -534,7 +536,7 @@ This module offers the following functions:
.. _constants:

Constants
------------------
---------

The following constants are defined for use in many :mod:`winreg` functions.

Expand Down
8 changes: 8 additions & 0 deletions Doc/library/winsound.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@
.. moduleauthor:: Toby Dickenson <htrd90@zepler.org>
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>

**Source code:** :source:`PC/winsound.c`

--------------

The :mod:`winsound` module provides access to the basic sound-playing machinery
provided by Windows platforms. It includes functions and several constants.


Functions
---------

.. function:: Beep(frequency, duration)

Beep the PC's speaker. The *frequency* parameter specifies frequency, in hertz,
Expand Down Expand Up @@ -44,6 +49,9 @@ provided by Windows platforms. It includes functions and several constants.
error, :exc:`RuntimeError` is raised.


Constants
---------

.. data:: SND_FILENAME

The *sound* parameter is the name of a WAV file. Do not use with
Expand Down
Loading